2007 Dec 21 12:05 PM
2007 Dec 21 12:11 PM
Dear Anand,
SELTAB is a ranges which is used to pass values to select-options (called program) from calling program.
Please check this link for sample codes in detail.
http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba51a35c111d1829f0000e829fbfe/content.htm
Best Regards,
Rajesh
Please reward points if helpful.
2007 Dec 21 12:08 PM
To store SELECT-OPTIONS values while using SUBMIT we use seltab internal table...
for example..
DATA: seltab TYPE TABLE OF rsparams,
lifnr_tab LIKE LINE OF seltab.
lifnr_tab-selname = 'S_LIFNR'.
lifnr_tab-sign = s_lifnr-sign.
lifnr_tab-option = s_lifnr-option.
LOOP AT s_lifnr.
lifnr_tab-low = s_lifnr-low.
lifnr_tab-high = s_lifnr-high.
APPEND lifnr_tab TO seltab.
ENDLOOP.
SUBMIT (sy-repid) WITH SELECTION-TABLE seltab.
..
2007 Dec 21 12:11 PM
Dear Anand,
SELTAB is a ranges which is used to pass values to select-options (called program) from calling program.
Please check this link for sample codes in detail.
http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba51a35c111d1829f0000e829fbfe/content.htm
Best Regards,
Rajesh
Please reward points if helpful.