cancel
Showing results for 
Search instead for 
Did you mean: 

webdynpro application url.

Former Member
0 Kudos

Hi,

Is there any function module or table to find the webdynpro application url from component name?

Regards

Sam

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi

Use the method CONSTRUCT_WD_URL of class CL_WD_UTILITIES


CALL METHOD CL_WD_UTILITIES=>CONSTRUCT_WD_URL
 EXPORTING
  APPLICATION_NAME = 'zvend'
 namespace        = 'SAP'
IMPORTING
 OUT_ABSOLUTE_URL = g_url.

g_url willl be ur webdynpro application URL

venkata_ramisetti
Active Contributor
0 Kudos

If you just want to know what is the corresponding web dynpro application for a web dynpro component then you can check in table WDY_APPLICATION.

If you want to know entire URL for a given web dynpro component then you can use fm WDY_EXECUTE_IN_PLACE.

Use SUPPRESS_OUTPUT = 'X' to get just URL for web dynpro component.

Thanks

Venkata Ramakrishna Ramisetti