Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Internal Table Select options

Former Member
0 Likes
478

Hi All,

I have 'years of service' as a select option field in selection screen for which i created possible values through

'F4_INT_TABLE_VALUE_REQUEST' FM.

I have 5,10,16,25,30,45 values in both low and high fields of the select option field.

I need to bring the values into an internal table after user selects a particular value.

Can anyone give me a suggestion?

Thanks

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
429

select options also a table. so loop the select option table and move them to an internal table.

some thing like this..

loop at s_selopt.

if s_selopt-low is not initial.
"move to internal table
"append 
endif.

if s_selopt-hig is not initial.
"move to internal table
"append 
endif.


endloop.

2 REPLIES 2
Read only

Former Member
0 Likes
430

select options also a table. so loop the select option table and move them to an internal table.

some thing like this..

loop at s_selopt.

if s_selopt-low is not initial.
"move to internal table
"append 
endif.

if s_selopt-hig is not initial.
"move to internal table
"append 
endif.


endloop.

Read only

0 Likes
429

thank you very much