cancel
Showing results for 
Search instead for 
Did you mean: 

How do I get query string from the request

Former Member
0 Kudos

Hi experts,

How do I get the query string from the request?

Thanks!

Anthony

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos
 
  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 ).

Thanks!