cancel
Showing results for 
Search instead for 
Did you mean: 

Set default to parameters in select options

Former Member
0 Kudos

hi, experts

How to set default to parameters in select options?

i use the method "add_parameter_field"to add

parameters field.

Thanks you very much!

Accepted Solutions (1)

Accepted Solutions (1)

Yashpal
Active Contributor
0 Kudos

Hi ,

in add_parameter_field there is a parameter I_VALUE of type data .

so write this code to pass the default value .

data : lr_data type ref to data .

field-symbols : <fs> type i .

create data lr_data type i .

assign lr_data->* to <fs> .

<fs> = 20 .

Regards

Yash

Former Member
0 Kudos

hi, Yashpal

Thanks you for your reply!

I am use the same code with your, the problem is

resolved by notes"1082324".

Answers (0)