‎2009 Feb 05 6:50 AM
Hi,
How to pass Select-options to a Function Module ,
One by one the the whole range should be passed to the Function Module,
‎2009 Feb 05 6:54 AM
‎2009 Feb 05 6:52 AM
‎2009 Feb 05 6:53 AM
‎2009 Feb 05 6:59 AM
hi,
How can looping solve it,
The table will have the fields Low and High,
I want to paas all the data between this low and high including this low and high to the function module.
I tried this by creating another table and took all the values from low to high in that and then passed it to the Function Module, But will the work with the character field.
‎2009 Feb 05 7:04 AM
Hi,
You can do one thing. Fetch all the values from the table based on your select option and get them in some internal table.
Select <your_field> from <corresponding_table>
in i_tab where <your_field> in select_option.
Then you can give it in FM.
Regards
Natasha Garg
‎2009 Feb 05 7:06 AM
‎2009 Feb 05 6:54 AM
‎2009 Feb 05 6:57 AM
hi
better option : as select option is like internal table directly pass internal table to FM as considering performance ( when we use LOOP it will take too long in production ).
‎2009 Feb 05 6:58 AM
‎2009 Feb 05 6:58 AM