2007 Mar 21 8:44 PM
hi all,
can anybody let me know the function module name which reads the data entered on selection screen ? i know SAP has one of the standard function module to read the data from selection screen.
please reply soon its kinda urgent.
Thanks,
2007 Mar 21 8:52 PM
If you need these values in one of the selection screen events, you can use DYNP_VALUES_READ.
2007 Mar 21 8:45 PM
2007 Mar 21 8:46 PM
Check PRINT_SELECTOPTIONS.
I have used this one but it is specific to PNP LDB RP_PNP_SHOW_SELECTOPTIONS
Regards,
Amit
2007 Mar 21 8:47 PM
Shah,
If you are using Variant then you can use FM <b>rs_variant_contents</b> to read the data entered in selection screen..
Rgds.
2007 Mar 21 8:47 PM
2007 Mar 21 8:52 PM
If you need these values in one of the selection screen events, you can use DYNP_VALUES_READ.
2007 Mar 21 8:52 PM
Hi,
Please try this FM RS_LIST_SELECTION_TABLE.
DATA: zzl_repid TYPE syst-repid,
zt_selections TYPE TABLE OF rsparams.
zzl_repid = sy-repid.
CALL FUNCTION 'RS_LIST_SELECTION_TABLE'
EXPORTING
report = zzl_repid
seltext = 'X'
newpage = ' '
TABLES
sel_tab = zt_selections
EXCEPTIONS
OTHERS = 0.
...
Regards,
Ferry Lianto