<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Spool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/spool/m-p/3750462#M902305</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Spool request means the Output of a Report that can be printed using an Output device.&lt;/P&gt;&lt;P&gt;whenever we execute the Report in Background by default the Output will be Sent to Spool.&lt;/P&gt;&lt;P&gt;We can See the Spool requests (and also print them) in Tcode SP01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/7a5f4061-0a01-0010-c9bc-a4e4cb100438" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/7a5f4061-0a01-0010-c9bc-a4e4cb100438&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kiran Sure&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Apr 2008 12:25:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-24T12:25:17Z</dc:date>
    <item>
      <title>Spool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spool/m-p/3750459#M902302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;Could any one explain me about spool and the values given as input to a program to generate the Spool.&lt;/P&gt;&lt;P&gt;Please help me...&lt;/P&gt;&lt;P&gt;Thanks in advance...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 12:21:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spool/m-p/3750459#M902302</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T12:21:04Z</dc:date>
    </item>
    <item>
      <title>Re: Spool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spool/m-p/3750460#M902303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Spool request means the Output of a Report that can be printed using an Output device.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SAP stores the spool request. You can create print requests from this spool request as many times as you wish.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;SAP-Spool, among other spooling systems, can serve as source for the output data to be processed. Here you can define whether the SAP-Spool interface should be active or not. Reports can be transferred via SAP exits to Entire Output Management for further processing, instead of being printed by the SAP Spooling System. The data are stored in the specified Adabas file (NOM Container File) and an entry is created for each Report in an internal queue. These jobs are run if SAP-Spool interface is activated. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SP01&lt;/STRONG&gt; is the transaction to run the spool requests&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SUBMIT rep ... TO SAP-SPOOL.&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;This is the syntax to submit the report to spool request&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is a sample program&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: PARAMS LIKE PRI_PARAMS,
      DAYS(1)  TYPE N VALUE 2,
      COUNT(3) TYPE N VALUE 1,
      VALID    TYPE C.

CALL FUNCTION 'GET_PRINT_PARAMETERS'
  EXPORTING DESTINATION           = 'LT50'
            COPIES                = COUNT
            LIST_NAME             = 'TEST'
            LIST_TEXT             = 'SUBMIT ... TO SAP-SPOOL'
            IMMEDIATELY           = 'X'
            RELEASE               = 'X'
            NEW_LIST_ID           = 'X'
            EXPIRATION            = DAYS
            LINE_SIZE             = 79
            LINE_COUNT            = 23
            LAYOUT                = 'X_PAPER'
            SAP_COVER_PAGE        = 'X'
            COVER_PAGE            = 'X'
            RECEIVER              = 'SAP*'
            DEPARTMENT            = 'System'
            NO_DIALOG             = ' '
  IMPORTING OUT_PARAMETERS        = PARAMS
            VALID                 = VALID.

IF VALID &amp;lt;&amp;gt; SPACE.
  SUBMIT RSTEST00 TO SAP-SPOOL
    SPOOL PARAMETERS PARAMS
    WITHOUT SPOOL DYNPRO.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check this link&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/7e/36e4c4023411d399b70000e83dd9fc/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/7e/36e4c4023411d399b70000e83dd9fc/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/7a5f4061-0a01-0010-c9bc-a4e4cb100438" target="test_blank"&gt;https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/7a5f4061-0a01-0010-c9bc-a4e4cb100438&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/submit_t.htm" target="test_blank"&gt;http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/submit_t.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;reward if helpful&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;raam&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 12:23:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spool/m-p/3750460#M902303</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T12:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: Spool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spool/m-p/3750461#M902304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Spool request means the Output of a Report that can be printed using an Output device.&lt;/P&gt;&lt;P&gt;When we execute a Report in Background by default the Output will be Sent to Spool.&lt;/P&gt;&lt;P&gt;We can See the Spool requests (also print ) in Tcode SP01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Deepu.k&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 12:25:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spool/m-p/3750461#M902304</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T12:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: Spool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spool/m-p/3750462#M902305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Spool request means the Output of a Report that can be printed using an Output device.&lt;/P&gt;&lt;P&gt;whenever we execute the Report in Background by default the Output will be Sent to Spool.&lt;/P&gt;&lt;P&gt;We can See the Spool requests (and also print them) in Tcode SP01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/7a5f4061-0a01-0010-c9bc-a4e4cb100438" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/7a5f4061-0a01-0010-c9bc-a4e4cb100438&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kiran Sure&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 12:25:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spool/m-p/3750462#M902305</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T12:25:17Z</dc:date>
    </item>
    <item>
      <title>Re: Spool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spool/m-p/3750463#M902306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Spool is used to hold the output data while we run the job in batch&lt;/P&gt;&lt;P&gt;mode it will be created when u run a job in BG&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Spool is nothing but a repository which holds all the requests to the&lt;/P&gt;&lt;P&gt;output devices. For example a printer could be an output device. So a&lt;/P&gt;&lt;P&gt;request which goes to the printer from application is called a spool&lt;/P&gt;&lt;P&gt;request and managed by spool work process in SAP. You can have only&lt;/P&gt;&lt;P&gt;one work process for spool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The spool requests assigned-- as&lt;/P&gt;&lt;P&gt;The step information is stored in table TBTCP. This has space for exactly one spool request (field LISTIDENT). You can only store one spool request even if a step generates several spool requests during processing. In this case, the application is responsible for a "spool overview".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whenever you run any transaction, lets say a big report, you require it to run in the background, so you need to see the output when it is finished...so where does SAP will store it?...Answer is it is stored in the spool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Output of all the background job is stored in the spool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can view your spools using transaction SP01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TSP01 is the table to get spool request number&lt;/P&gt;&lt;P&gt;and the spool request number will be TSP01-RQIDENT.&lt;/P&gt;&lt;P&gt;Chk this links.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/7e/36e4c4023411d399b70000e83dd9fc/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/7e/36e4c4023411d399b70000e83dd9fc/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/c7/58c905e5bf11d18e2b0000e83dd9fc/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/c7/58c905e5bf11d18e2b0000e83dd9fc/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/rep_spooltopdf.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/rep_spooltopdf.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2005/helpdata/en/94/45c53bcc422d42e10000000a114084/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2005/helpdata/en/94/45c53bcc422d42e10000000a114084/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/rep_spooltopdf.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/rep_spooltopdf.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2005/helpdata/en/94/45c53bcc422d42e10000000a114084/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2005/helpdata/en/94/45c53bcc422d42e10000000a114084/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;sharad.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 12:27:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spool/m-p/3750463#M902306</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T12:27:29Z</dc:date>
    </item>
    <item>
      <title>Re: Spool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spool/m-p/3750464#M902307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  A spool gets generated when you execute a report/list/form output in the background. &lt;/P&gt;&lt;P&gt;The spool can be printed as many timea as you like later.&lt;/P&gt;&lt;P&gt;The spool numbers are stored in the table TSP01 and spools can be viewed in the transaction SP02,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi Kanth Talagana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 12:27:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spool/m-p/3750464#M902307</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T12:27:52Z</dc:date>
    </item>
  </channel>
</rss>

