‎2010 Mar 15 6:22 AM
Hi,
I have written abap program in which there are 3 selection options.. I want to pass these selection options to a function. so I want to know how to define or refer selection options in functions which is called by some other abap program ?
Regards,
Santosh
‎2010 Mar 15 6:36 AM
Not sure if you have already done a search on SDN, but my guess would be that this question was posted in the past, at least once. Here's a hint though:
structure RSDSSELOPT for dynamic selections can be used for example.
‎2010 Mar 15 6:36 AM
Not sure if you have already done a search on SDN, but my guess would be that this question was posted in the past, at least once. Here's a hint though:
structure RSDSSELOPT for dynamic selections can be used for example.
‎2010 Mar 15 6:37 AM
give the selection options variables in IMPORT parameter of the Function in se37...
‎2010 Mar 15 6:54 AM
The select options are basically just tables with a specific structure. One option would be to specify them as TABLES parameters, e.g. check out function module BAPI_MATERIAL_GETLIST and you can see for example a call via function IAC_SHMA_MATERIALS_SELECT (or check dictionary table type SHP_MATNR_RANGE_T in SE11).
Cheers, harald