<?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: Getting spool number after SUBMIT report statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873676#M1593998</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The program can be submitted as a job which has a unique job number and accordingly spool number will be generated which can read.&lt;/P&gt;&lt;P&gt;See code e.g below:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: number TYPE tbtcjob-jobcount, 
      name TYPE tbtcjob-jobname VALUE 'JOB_TEST', 
      print_parameters TYPE pri_params. 

... 

CALL FUNCTION 'JOB_OPEN' 
  EXPORTING 
    jobname          = name 
  IMPORTING 
    jobcount         = number 
  EXCEPTIONS 
    cant_create_job  = 1 
    invalid_job_data = 2 
    jobname_missing  = 3 
    OTHERS           = 4. 
IF sy-subrc = 0. 
  SUBMIT submitable TO SAP-SPOOL 
                    SPOOL PARAMETERS print_parameters 
                    WITHOUT SPOOL DYNPRO 
                    VIA JOB name NUMBER number 
                    AND RETURN. 
  IF sy-subrc = 0. 
    CALL FUNCTION 'JOB_CLOSE' 
      EXPORTING 
        jobcount             = number 
        jobname              = name 
        strtimmed            = 'X' 
      EXCEPTIONS 
        cant_start_immediate = 1 
        invalid_startdate    = 2 
        jobname_missing      = 3 
        job_close_failed     = 4 
        job_nosteps          = 5 
        job_notex            = 6 
        lock_failed          = 7 
        OTHERS               = 8. 
    IF sy-subrc &amp;lt;&amp;gt; 0. 
      ... 
    ENDIF. 
  ENDIF. 
ENDIF. 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mansi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 May 2011 05:11:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-05-26T05:11:46Z</dc:date>
    <item>
      <title>Getting spool number after SUBMIT report statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873675#M1593997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose there is a scenario, when 3 users are sharing same session and executing a program simultaneously.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the program, the users are submitting a program to sap spool such that a spool no is generated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and based on that spool no, the users read its log...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How will we identify that which spool no belongs to which particular session so that the the user will read its own loag and not the other person/'s log...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2011 05:08:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873675#M1593997</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-26T05:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: Getting spool number after SUBMIT report statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873676#M1593998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The program can be submitted as a job which has a unique job number and accordingly spool number will be generated which can read.&lt;/P&gt;&lt;P&gt;See code e.g below:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: number TYPE tbtcjob-jobcount, 
      name TYPE tbtcjob-jobname VALUE 'JOB_TEST', 
      print_parameters TYPE pri_params. 

... 

CALL FUNCTION 'JOB_OPEN' 
  EXPORTING 
    jobname          = name 
  IMPORTING 
    jobcount         = number 
  EXCEPTIONS 
    cant_create_job  = 1 
    invalid_job_data = 2 
    jobname_missing  = 3 
    OTHERS           = 4. 
IF sy-subrc = 0. 
  SUBMIT submitable TO SAP-SPOOL 
                    SPOOL PARAMETERS print_parameters 
                    WITHOUT SPOOL DYNPRO 
                    VIA JOB name NUMBER number 
                    AND RETURN. 
  IF sy-subrc = 0. 
    CALL FUNCTION 'JOB_CLOSE' 
      EXPORTING 
        jobcount             = number 
        jobname              = name 
        strtimmed            = 'X' 
      EXCEPTIONS 
        cant_start_immediate = 1 
        invalid_startdate    = 2 
        jobname_missing      = 3 
        job_close_failed     = 4 
        job_nosteps          = 5 
        job_notex            = 6 
        lock_failed          = 7 
        OTHERS               = 8. 
    IF sy-subrc &amp;lt;&amp;gt; 0. 
      ... 
    ENDIF. 
  ENDIF. 
ENDIF. 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mansi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2011 05:11:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873676#M1593998</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-26T05:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: Getting spool number after SUBMIT report statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873677#M1593999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Thanks for quick Reply....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But my requirement is i cant submit the program as a Job.&lt;/P&gt;&lt;P&gt;because i am calling 3 programs in my Zprogram which are dependent on each other.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So i am calling 3 submit statements, each generating the spool number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i scheedule a job, then the other programs which are dependent on the first one wont be executed successfully.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any other suggestion....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2011 05:21:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873677#M1593999</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-26T05:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: Getting spool number after SUBMIT report statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873678#M1594000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Each user can chech the same with 'Own spool requests' right ?Executed by their user id..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2011 05:22:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873678#M1594000</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-26T05:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: Getting spool number after SUBMIT report statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873679#M1594001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But the user id is same in all the cases.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The users are sharing sessions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2011 05:24:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873679#M1594001</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-26T05:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: Getting spool number after SUBMIT report statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873680#M1594002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go to sm37 and check the job is triggered there..if yes,go to push button -&amp;gt; step ..then you will be able top see all program names executed and corresponding spool numbers for each program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2011 05:29:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873680#M1594002</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-26T05:29:39Z</dc:date>
    </item>
    <item>
      <title>Re: Getting spool number after SUBMIT report statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873681#M1594003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not submitting my program as a job so no job is created in SM37.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2011 05:38:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873681#M1594003</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-26T05:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: Getting spool number after SUBMIT report statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873682#M1594004</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;I don't think this is a valid scenario.. as the persons are sahring same user id , and in SAP one user id will have one first and last name(bname). so always get one user name only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;one more thing we can do, not sure how much it is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create a custom table with the following fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;userid,firstname, lastname, username. the custom table should be updated for all the users who will be executing the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so for same user id , the first name and last name is same but we can have multiple usernames.Once it is done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also in the program selection screen have one more field as USER (give F4 help getting data from custom table) and every user should enter his / her name . Now while you submit to spool , add the USER to the submit program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2011 05:52:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873682#M1594004</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2011-05-26T05:52:08Z</dc:date>
    </item>
    <item>
      <title>Re: Getting spool number after SUBMIT report statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873683#M1594005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suruchi,&lt;/P&gt;&lt;P&gt;if you're submitting the reports within a Z program, you can try to get the spool number right after submitting:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  SUBMIT (report)
    TO SAP-SPOOL ... "and so on.

  DATA: l_spool_c LIKE tsp01_sp0r-rqid_char.
  GET PARAMETER ID 'SPI' FIELD l_spool_c.
  " now l_spool_c contains the spool number
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I hope it helps.&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Alvaro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2011 06:07:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873683#M1594005</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-26T06:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: Getting spool number after SUBMIT report statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873684#M1594006</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;/P&gt;&lt;P&gt;Try this one,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once the user is executing the program just before the submit command store system time in some variable,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after the program creates a spool go to TSP01 table give the username and time of creation.&lt;/P&gt;&lt;P&gt;This will give them the spool req number pass this as a message or write this in output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think there will be slit difference in the time so that we can identify.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Submit your program in background.&lt;/P&gt;&lt;P&gt;Check if 1st program is finished and successfull then run the other 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use FM 'BP_JOB_STATUS_GET" to get the status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anmol.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2011 06:11:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873684#M1594006</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-26T06:11:43Z</dc:date>
    </item>
    <item>
      <title>Re: Getting spool number after SUBMIT report statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873685#M1594007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for all the replies.. My problem has been resolved&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Suruchi Razdan on May 26, 2011 11:18 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2011 09:18:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873685#M1594007</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-26T09:18:16Z</dc:date>
    </item>
    <item>
      <title>Re: Getting spool number after SUBMIT report statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873686#M1594008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My 2 cents ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although you're have marked Alvaro's solution as "Correct", but i have some apprehensions about it! If there is a case where you've spool creation simultaneously in different user sessions, can you rely on the GET PARAMETER? Since SPA/GPA are valid across all the user sessions, i think this solution can be dicey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the other hand, since you're SUBMIT'ting the program as BG job, you can query the table &lt;EM&gt;TBTCP&lt;/EM&gt; for the field &lt;EM&gt;LISTIDENT&lt;/EM&gt; (which stores the spool id for the BG job step) using &lt;EM&gt;JOBNAME&lt;/EM&gt; &amp;amp; &lt;EM&gt;JOBCOUNT&lt;/EM&gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know your comments.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: Since you're SUBMIT'ting only one program in the Job, you can ignore the field &lt;EM&gt;STEPCOUNT&lt;/EM&gt; !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2011 09:54:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873686#M1594008</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2011-05-26T09:54:42Z</dc:date>
    </item>
    <item>
      <title>Re: Getting spool number after SUBMIT report statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873687#M1594009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be you r right that i shudnt  use Get Parameter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i asked my seniors and they said its ok to use Get parameter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I cant create job. Yuo can say its a requirement&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2011 09:59:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873687#M1594009</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-26T09:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: Getting spool number after SUBMIT report statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873688#M1594010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suruchi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suhas is correct and you won't get the desired result. Also even if you get the spool how will you know which user's spool.Are you giving the spool number in the output or checking SP01. as you have said the userid is shared.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please let us know about this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2011 10:06:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873688#M1594010</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2011-05-26T10:06:17Z</dc:date>
    </item>
    <item>
      <title>Re: Getting spool number after SUBMIT report statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873689#M1594011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually as soon as the spool is generated i write statement &lt;/P&gt;&lt;P&gt;Get Parameter id SPI.....&lt;/P&gt;&lt;P&gt;whatever the spool number i get, i store it in my Ztable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and later on i can use it...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I dont know any other way...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you suggest me any alternative solution?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2011 10:19:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873689#M1594011</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-26T10:19:23Z</dc:date>
    </item>
    <item>
      <title>Re: Getting spool number after SUBMIT report statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873690#M1594012</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;that should be 'OK' if you are storing.in ztable.. What is the structre of the ztable?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2011 10:25:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873690#M1594012</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2011-05-26T10:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: Getting spool number after SUBMIT report statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873691#M1594013</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well it consists of spool numbers for each submit statement plus some job names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually based n my reuirement i hav created it...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Suruchi Razdan on May 26, 2011 12:52 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2011 10:52:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-spool-number-after-submit-report-statement/m-p/7873691#M1594013</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-26T10:52:33Z</dc:date>
    </item>
  </channel>
</rss>

