<?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 Submit with SAP standard program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-sap-standard-program/m-p/1057662#M90906</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Group.&lt;/P&gt;&lt;P&gt;I am writing a custom code( Z program ) where in I call the standard SAP program RPAR4W00 using Submit command and passing the selection screen parameters.My problem is when this program RPAR4W00 executes it displays a report which has a unique session no created. I need to capture this session no so that I can use this session no to Delete the records using program RPAR4D00.Would like to know how can this be achieved.Thanks in advance.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Bhandari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Dec 2005 07:36:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-12-22T07:36:46Z</dc:date>
    <item>
      <title>Submit with SAP standard program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-sap-standard-program/m-p/1057662#M90906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Group.&lt;/P&gt;&lt;P&gt;I am writing a custom code( Z program ) where in I call the standard SAP program RPAR4W00 using Submit command and passing the selection screen parameters.My problem is when this program RPAR4W00 executes it displays a report which has a unique session no created. I need to capture this session no so that I can use this session no to Delete the records using program RPAR4D00.Would like to know how can this be achieved.Thanks in advance.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Bhandari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Dec 2005 07:36:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-sap-standard-program/m-p/1057662#M90906</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-22T07:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: Submit with SAP standard program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-sap-standard-program/m-p/1057663#M90907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;EXAMPLE :&lt;/P&gt;&lt;P&gt;    SUBMIT rseidoc9&lt;/P&gt;&lt;P&gt;            WITH updtim IN updtim ....&lt;/P&gt;&lt;P&gt;            WITH value1_1 = w_licha-licha&lt;/P&gt;&lt;P&gt;    EXPORTING LIST TO MEMORY&lt;/P&gt;&lt;P&gt;    AND RETURN        .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THEN TO DISPLAY :&lt;/P&gt;&lt;P&gt;DATA : LIST TYPE ABAPLIST OCCURS 0.&lt;/P&gt;&lt;P&gt;  call function 'LIST_FROM_MEMORY'&lt;/P&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      listobject = list&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;      not_found  = 1&lt;/P&gt;&lt;P&gt;      others     = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'WRITE_LIST'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      write_only = ' '&lt;/P&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      listobject = list&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;      empty_list = 1&lt;/P&gt;&lt;P&gt;      others     = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN YOU'RE CASE YOU CAN DO A SEARCH IN THE TABLE LIST AND&lt;/P&gt;&lt;P&gt;GET THE VALUE YOU NEED!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DON'T FORGET THE REWARD PLZ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Dec 2005 07:40:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-sap-standard-program/m-p/1057663#M90907</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-22T07:40:08Z</dc:date>
    </item>
    <item>
      <title>Re: Submit with SAP standard program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-sap-standard-program/m-p/1057664#M90908</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;One way of doing this is using&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT (PROG_NAME) TO SAP-SPOOL&lt;/P&gt;&lt;P&gt;                  VIA&lt;/P&gt;&lt;P&gt;                  JOB &amp;lt;JOB_NAME&amp;gt;&lt;/P&gt;&lt;P&gt;                  NUMBER &amp;lt;JOB_COUNT&amp;gt;&lt;/P&gt;&lt;P&gt;                  WITHOUT SPOOL-DYNPRO&lt;/P&gt;&lt;P&gt;                 WITH SELECTION-TABLE I_SELTAB " i/p data&lt;/P&gt;&lt;P&gt;                 and return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here i_seltab would be of type rsparams which would have all the selection screen data which you want to pass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then using FM 'RSPO_RETURN_ABAP_SPOOLJOB' you can read the whole spool data &amp;amp; can take out the required value of the field into a variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This would solve the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Dec 2005 07:47:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-sap-standard-program/m-p/1057664#M90908</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-22T07:47:02Z</dc:date>
    </item>
    <item>
      <title>Re: Submit with SAP standard program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-sap-standard-program/m-p/1057665#M90909</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;PRE&gt;&lt;CODE&gt;&amp;lt;b&amp;gt;SUBMIT xxxx EXPORTING LIST TO MEMORY&amp;lt;/b&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Does not display the output list of the called report, but saves it in SAP memory and leaves the called report immediately. Since the calling program can read the list from memory and process it further, you need to use the addition ... AND RETURN . Also, since the called report cannot be requested for printing, the addition ... TO SAP-SPOOL is not allowed here. You can read the saved list from SAP memory with the function module 'LIST_FROM_MEMORY' and then (for example) store it in the database with EXPORT . You can process this list further with the function modules 'WRITE_LIST' , 'DISPLAY_LIST' ... of the function group "SLST" .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Dec 2005 07:53:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-with-sap-standard-program/m-p/1057665#M90909</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-22T07:53:45Z</dc:date>
    </item>
  </channel>
</rss>

