cancel
Showing results for 
Search instead for 
Did you mean: 

publish webdynpro link in BSP

Former Member
0 Kudos

Hi,

Please let me know how to connect webdynpro link in Std BSP.

Thanks,

Asha

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Just like Thomas said, you only need to navigate to Web Dynpro Abap URL from your BSP.

You can use method CL_WD_UTILITIES=>CONSTRUCT_WD_URL to get Web Dynpro Abap URL.


   cl_wd_utilities=>construct_wd_url(
                     EXPORTING application_name = 'ZWDA_TEST'
                     IMPORTING out_local_url    = url     ).

Regards,

$=====$

Are you newbie? Check this out: [Rules of Engagement|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement]

Answers (1)

Answers (1)

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

What exactly are you needing help with? All Web Dynpro applications are available via URL so navigation to it is like navigating to any other web address - WDA, BSP, or otherwise. So all you need is to place the URL in an html <a> tag with the href. Of you can use the HTMLB UI elements to link or even fire an event use the navigation object in BSP to go to Web Dynpro. Nothing Web Dynpro specific here. Are you perhaps wanting to know how to calculate the Web Dynpro URL?