Additional Blogs by SAP
cancel
Showing results for 
Search instead for 
Did you mean: 
thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

*{   REPLACE        D15K900923                                        1

*\  if service is initial.

  if service is initial and

     host_compatibility = abap_false.

*}   REPLACE

    if scheme = schemetype_http.

      service = '80'.

    else.

      service = '443'.

    endif.

  else.

  • check validity of port number (16bit Integer)

    if ( strlen( service ) gt 5 )

    or ( service cn '0123456789' ).

      raise argument_not_found.

    endif.

  endif.

     



The Example

Now that we are over that little mess, we can begin with the example at hand.


Step1: I signed up for my free account just like the first weblog said to do:Step2&3: I created a BSP application named ZES_WEATHER and then imported all the images from the original weblog:

5 Comments