Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

how to know spool requests from other program?

Former Member
0 Likes
922

Hi,

I have requirement like: one standard program will be scheduled in the background, so corresponding spool requests will generated.

I need to write a program, which will capture the spool requests of the standard program.

is there any function module/table available for this requirement? we need to give spool title, date and time as input parameters to that function module.

please help me

Hi,

I have requirement like: one standard program will be scheduled in the background, so corresponding spool requests will generated.

I need to write a program, which will capture the spool requests of the standard program.

is there any function module/table available for this requirement? we need to give spool title, date and time as input parameters to that function module.

please help me

4 REPLIES 4
Read only

Former Member
0 Likes
723

Hello,

I think you will get it with system variable SY-SPONO

or use this FM RSPO_FIND_SPOOL_REQUESTS

Data : Begin Of Spool_Requests Occurs 100.

Include Structure RSPORQ.

Data : End Of Spool_Requests.

Call Function 'RSPO_FIND_SPOOL_REQUESTS'

Exporting

RQOwner = 'TTL '

Tables

SpoolRequests = SPOOL_REQUESTS.

Read only

Former Member
0 Likes
723

u can check ths FMs..

BAPI_XBP_JOB_SPOOLLIST_READ

OIUOW_DISPLAY_JOB_SPOOL_LIST

Read only

Former Member
0 Likes
723

Hi,

Check the TABLE TSP01 this may help you.

You can pick this field form the above table RQO1NAME.

If any idea you have got from the above share with me.

Cheers!!

Venkat

Read only

Former Member
0 Likes
723

Hi,

try these Function Modules....

RSPO_IDELETE_SPOOLREQ

RSPO_IGET_TOC_SPOOLREQ

RSPO_IMAP_PAGES_SPOOLREQ

RSPO_ISELECT_SPOOLREQS

RSPO_RCHANGE_SPOOLREQ_ATTR

RSPO_RDISPLAY_SPOOLREQ

RSPO_RDISPLAY_SPOOLREQ_LIST

RSPO_RID_SPOOLREQ_ATTR

RSPO_RID_SPOOLREQ_DISP

RSPO_RID_SPOOLREQ_LIST List Display for Spool Requests with ID

RSPO_RISELECT_SPOOLREQS

RSPO_RLIST_DELETE_SPOOLREQ

RSPO_RPRINT_SPOOLREQ

RSPO_RSPOOLREQ_LIST_TO_VIEW

RSPO_RSPOOLREQ_TO_VIEW

RSPO_RSTATUS_FOR_SPOOLREQ

Arunima