cancel
Showing results for 
Search instead for 
Did you mean: 

Working with Parameters in WebDynpro ABAP

Former Member
0 Kudos

Hello Gurus,

Can anyone please provide me the steps (Example) to Create a PARAMETERS field in Web Dynpro ABAP Selection Screen (I gone through SELECT-OPTIONS Examples but i could not find much information for PARAMETERS)?

Also, I want to pass some default values to the same parameters field.

Thanks in adavance your ur inputs.

Thanks You.

Shyam

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Found Solution.

Here is the solution:

* Add Parameters on the Selection Screen

    lv_r_helper_class->add_selection_field(
      i_id                         = `VBELN`
      it_result                    = rt_table
      i_no_intervals               = abap_true ).

Let me know if anyone is looking for the more information.

Thank You.

Shyam

Former Member
0 Kudos

Hello.

For your solution you are creating a select-option, to create a parameter use method ADD_PARAMETER_FIELD instead.

For setting an initial value fill the paramater I_VALUE of that method.

Regards,

Pablo.

Former Member
0 Kudos

Hi Cardona,

Thanks for the reply!

My requirement is "Its a parameter field and he enter multiple values on the search help popup". So i have used ADD_SELECTION_FIELD method.

Thank You.

Shyam

Answers (0)