cancel
Showing results for 
Search instead for 
Did you mean: 

spool request

Former Member
0 Kudos

hi all,

wht is spool request. from where can i gen the spool request number.

how will i display sapscript (MEDRUCK), RVDELNOTE, RVORDER01

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Amar,

You can view your spools using transaction <b>SP01</b>.

<b>TSP01</b> is the table to get spool request number

and the spool request number will be <b>TSP01-RQIDENT</b>.

To view any scripts, use transaction code SE71.

Thanks,

Vinay

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

Spool requests can be viewed via SP01, the number will be there, programatiically it is sometimes populated in the system field SY-SPONO.

You can display these scripts via SE71, or if you want to look at the actual output, the ouput can be generated via ME21N for MEDRUCK, VL01N for RVDELNOTE, and VA01 for RVORDER01.

Regards,

RIch Heilman

ferry_lianto
Active Contributor
0 Kudos

Hi Amar,

Spool request is a document for which a print function has been selected. However, it has not yet been output to a printer or another device. The output data for the print document is stored partly formatted in a data store until an output request is created, that is, until it is sent to a particular output device.

The spool system uses a spool request to store the print data temporarily and to access it. The data is stored in a temporary format. You can also display the print document. The system automatically assigns a 10-digit ID number to a spool request.

Output request: From the point of view of the SAP spool system, an output request outputs the print data of a spool request to a particular output device.

Multiple output requests may exist for a single spool request. Each represents an instance of the output of the same spool request. Each of these output requests may have different attributes, such as the target printer or number of copies.

By differentiating between spool request and output requests, the spool system provides a means of storing the data temporarily.

You will get the spool no. in the parameter JOB_OUTPUT_INFO after calling the smartform function module in print program. The spool ids of the prints is stored in table JOB_OUTPUT_INFO-SPOOLIDS.

Also if this spool is being generated internal to your program, then SY-SPONO should have the value.

Hope this will help.

Regards,

Ferry Lianto