cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Multiple Single Values with Select Options

Former Member
0 Likes
6,113

hi,

I'm using the SELECT_OPTIONS to accept the multiple input values through CREATE_RANGE_TABLE and it is working well but

1) i have requirement for some input fields that should accept multiple single values means without RANGES(From .. To).. Usually we achieve this by statement SELECT-OPTIONS in ABAP, could you help me out how i can achieve same functionality in webdynpro application.

2) i'm using dictionary search helps for WD4A, here i need to select multiple rows in the F4 results.

kindly provide suggestion how to achieve above functionalities.

thanks,

gupta.

View Entire Topic
Former Member
0 Likes

hi All,

thanks for the suggestions, in fact i have already resolved it.

now i'm having the look n feel problem, i have 3 select options input fields which are different data type lengths. so it is showing with irregular input lengths, i want display them uniformly. usually we can achieve this by using length parameters in graphical layout design, i haven't find options where i can change the design parameters in select options.

thanks,

gupta.

Former Member
0 Likes

Hi Gupta,

Use interface method:

lt_range = sel_opt->create_range_table(

i_typename = aTypename

i_length = aNumber ). <<<<

sel_opt->add_selection_field(

i_id = anID

i_description = aDesc

it_result = lt_range... )

Regards,

George

Former Member
0 Likes

hi,

i have already tried with length but no change in display.

Former Member