‎2008 Aug 24 1:53 AM
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
‎2008 Aug 24 2:04 AM
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.
‎2008 Aug 24 2:04 AM
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.
‎2008 Aug 24 5:00 PM