cancel
Showing results for 
Search instead for 
Did you mean: 

the BSP runtime environment

Former Member
0 Kudos

If we call...we get the following as..

call method cl_http_ext_webapp=>create_url_for_bsp_application

exporting

bsp_application = 'ZKEY_WEBAS'

bsp_start_page = 'start.htm'

bsp_start_parameters = lt_parameters

importing

abs_url = l_url.

then you receive the mentioned URL pointing to PRD instead of TST system.

please help..

thanks

prasad

Accepted Solutions (0)

Answers (1)

Answers (1)

raja_thangamani
Active Contributor
0 Kudos

you can use below code to construct URL..

* Construct the Target URL
      CALL METHOD RUNTIME->CONSTRUCT_BSP_URL
        EXPORTING
          IN_PROTOCOL       = 'http'
          IN_APPLICATION_NS = RUNTIME->APPLICATION_NAMESPACE
          IN_APPLICATION    = RUNTIME->APPLICATION_NAME
          IN_PAGE           = '**/YFL_TARGET/target_Page.htm'
        IMPORTING
          OUT_ABS_URL       = V_TARGET_URL.

<i>*Reward each useful answer</i>

Raja T