cancel
Showing results for 
Search instead for 
Did you mean: 

How to read webdynpro application URL information

Pramanan
Active Participant
0 Kudos

Hi Experts,

I want to read the information from the webdynpro application.For example, I want to read the information like sap-client and sap-language.

Please let me know the procedure to achieve the above requirement.

Thanks in advance.

Accepted Solutions (0)

Answers (3)

Answers (3)

Pramanan
Active Participant
0 Kudos

wdr_task=>application_name

Former Member
0 Kudos

Hi

For client you can use system variable sy-mandt and sy-langu for the language. value in these variable will be available automatically. use method cl_http_server=>if_http_server~get_location to get SAP server info.

Thanks

Vishal kapoor

Former Member
0 Kudos

Hi Ramanan,

In your window event handler for that application you will get aal attributes in WDEVENT


DATA lt_url TYPE tihttpnvp.
  
CALL METHOD wdevent->get_data
    EXPORTING
      name  = if_wd_application=>all_url_parameters
    IMPORTING
      value = lt_url.

This will return all your parameters with value.

Nawal Kishor Mittal