cancel
Showing results for 
Search instead for 
Did you mean: 

Call WD Interactive Form with Values from ABAP Report

Former Member
0 Kudos

Hallo together,

i have a simple ABAP report with some values.

How to call a webdynpro passing these values and using them in Select-Statements to prefill the called Interactive Form

Thanks

Philip

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Philip,

This thread will help you in your rerquirement.

Regards,

Runal

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Runal,

i tried this and i get the parameters in the defaulthandler event.

but now i need these values in the supply function of my node to get the values which should be display.

How to access from supply function to the defaulthandler event? I read some threads but none answered my question i think.


METHOD handledefault .
  
  DATA: it_parameter TYPE tihttpnvp,
        wa_parameter LIKE LINE OF it_parameter.

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

Thanks

Philip

Former Member
0 Kudos

Hi Philip,

The solution for this as i see it, is in the METHOD handledefault itself you bind the value's to context nodes to which the UI Elements are bound.

Dont know if this will work. But you may try.

Regards,

Runal