cancel
Showing results for 
Search instead for 
Did you mean: 

URL application WDA

Former Member
0 Kudos

Hi all,

How do can I change the language of the the WD application after the Log-on step ?

I want also to know how to get the URL of the application in a method (Like WDDOINIT) ?

B-Regards

Edited by: Jcrios on Apr 16, 2010 4:21 PM

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Check out the below SAP help link for Application parameters global setting.

http://help.sap.com/SAPHELP_NW70EHP1/helpdata/EN/7b/fb57412df8091de10000000a155106/content.htm

Former Member
0 Kudos

Jcrios,

use this code to get the application url

data lv_url type string.

data: lt_parameters type tihttpnvp,

ls_parameters type ihttpnvp.

cl_hrrcf_wd_services=>construct_wd_url(

exporting

iv_application_name = application_name

it_parameters = lt_parameters

receiving

rv_url = lv_url ).

Thanks

Bala Duvvuri