cancel
Showing results for 
Search instead for 
Did you mean: 

how to read URL Parameters

Former Member
0 Kudos

Hi All,

How to read URL parameters in another WDA.

Thanks in advance

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

here is the sample code.

you can write this code in HANDLEDEFAULT method of Default Window of Application being called.


  DATA:
    wa_url TYPE LINE OF tihttpnvp,
    int_url TYPE tihttpnvp.

  wdevent->get_data(
    EXPORTING
      name = if_wd_application=>all_url_parameters
    IMPORTING
      value = int_url ).

Former Member
0 Kudos

Hi Harish,

its not returning any parameters.