‎2008 Oct 22 7:11 AM
Hi all,
I need to pass select-option field value to a function module and get the output for each value present in selection screen.
selection options can contain for more the one value,i need to pass those all one bye one to the function module.
Please suggest on that.
Thanks
Mohit
‎2008 Oct 22 7:13 AM
Hi,
What Function Module are you calling ?
You can loop at select option like:
loop at s_variable.
*--here you have values form s_variable-low and s_variable-high
*--call FM here
endloop.
Thanks & Regards,
Navneeth K.
‎2008 Oct 22 7:13 AM
Hi,
What Function Module are you calling ?
You can loop at select option like:
loop at s_variable.
*--here you have values form s_variable-low and s_variable-high
*--call FM here
endloop.
Thanks & Regards,
Navneeth K.
‎2008 Oct 22 7:13 AM
Hi
You need to run a loop through if you want to pass it one by one.It may create performance bottleneck.So the best way is to pass it as a whole.
Cheers,
Hakim
‎2008 Oct 22 7:15 AM
hi,
use these function modules.
SELECT_OPTION_OPTIONS
LAGF_SELECT_OPTIONS_GET.
‎2008 Oct 22 7:18 AM