‎2008 Aug 01 7:01 AM
Hey all,
May i know if there is any FM to delete the Spool request number. or any way to delete it through program.
‎2008 Aug 01 7:13 AM
Hi,,
Try below FM
RSPO_IDELETE_SPOOLREQ
RSPO_RLIST_DELETE_SPOOLREQ
RSPO_R_RDELETE_SPOOLREQ
‎2008 Aug 01 7:05 AM
‎2008 Aug 01 7:13 AM
Hi,,
Try below FM
RSPO_IDELETE_SPOOLREQ
RSPO_RLIST_DELETE_SPOOLREQ
RSPO_R_RDELETE_SPOOLREQ
‎2008 Aug 01 7:14 AM
hi,
you can get spool request like that...
SELECT * FROM TBTCO into corresponding fields of table i_tbtco
WHERE jobname = v_jobname
and sdlstrtdt = sy-datum.
and sdluname = v_username.
SORT i_tbtco by sdlstrttm descending.
read table i_tbtco index 1.
SELECT * FROM tbtcp INTO corresponding fields of table i_tbtcp
WHERE jobname = v_jobname
and jobcount = i_tbtco-jobcount
and listident <> '0000000000'.
then you can delete this spool.
Rgds,
Paras