cancel
Showing results for 
Search instead for 
Did you mean: 

URL of application

Former Member
0 Kudos

Is there any Method or FM which will return the URL of application based on the WDA name as input?

Accepted Solutions (1)

Accepted Solutions (1)

gill367
Active Contributor
0 Kudos

CONSTRUCT_WD_URL() method of the class CL_WD_UTILITIES can do this.



data l_name type string.
data  url  type string.
l_name = '   '                  ""  applciation name 
call method CL_WD_UTILITIES=>CONSTRUCT_WD_URL( exporting APPLICATION_NAME = l_name
importing OUT_ABSOLUTE_URL = url ).


thanks

sarbjeet singh

Answers (1)

Answers (1)

0 Kudos

Hi,

try the fm

WDY_CONSTRUCT_URL.

Regards

Thorsten