cancel
Showing results for 
Search instead for 
Did you mean: 

WDR_SELECT_OPTIONS reseting parameter field(s)

Former Member
0 Kudos

Is this even possible?

There are methods reset_parameter_field and reset_all_parameter_fields but both are not implemented and do nothing.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

hi

refer the example in the system in component WDR_TEST_SELECT_OPTIONS

rgds,

amit

Former Member
0 Kudos

I ended up getting this to work, here was the solution.


  DATA lr_null TYPE REF TO data.

  CREATE DATA lr_null TYPE c.

  wd_this->gr_sel_helpr_pg->reset_all_selection_fields( ).
  wd_this->gr_sel_helpr_pg->set_value_of_parameter_field( i_id = 'EKGRP' i_value = lr_null ).

This ends up clearing my 1 parameter field and all selection fields. Couldn't find another solution, any better ways are welcome.