‎2008 Aug 19 7:20 AM
Hi,
thru my program, I am generating multiple spool requests.
how to caputure them in same program?
in which table spool information will stored? is there any table contains time stamp of spool requests?
Plz help me
‎2008 Aug 19 7:31 AM
‎2008 Aug 19 7:28 AM
‎2008 Aug 19 7:31 AM
‎2008 Aug 19 7:31 AM
Hi
http://help.sap.com/saphelp_nw04/helpdata/en/e0/989de87a6111d39a1d0000e83dd9fc/frameset.htm
Please check in above link
Regards,
Syf
‎2008 Aug 19 7:32 AM
Hi,
CALL FUNCTION 'END_FORM'.
After END_FORM you call the CLOSE_FORM like below code.
DATA : st_result1 TYPE itcpp.
CALL FUNCTION 'CLOSE_FORM'
IMPORTING
RESULT = st_result1.
st_result1-tdspoolid --> here u get the spool request number.
Thanks,
Durai.V