<?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: Regarding SUBMIT Statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-submit-statement/m-p/4994201#M1163195</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi pankaj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SUBMIT &amp;lt;PROGRAM NAE&amp;gt;   =   ds_name            " Creating batch input session&lt;/P&gt;&lt;P&gt;                  WITH  fl_check  =   fl_check&lt;/P&gt;&lt;P&gt;                  WITH  os_xon    =   os_xon&lt;/P&gt;&lt;P&gt;                  WITH  xnonunic  =   xnonunic&lt;/P&gt;&lt;P&gt;                  WITH  callmode  =   callmode&lt;/P&gt;&lt;P&gt;                  WITH  max_comm  =   max_comm&lt;/P&gt;&lt;P&gt;                  WITH  pa_xprot  =   pa_xprot&lt;/P&gt;&lt;P&gt;                  WITH  anz_mode  =   anz_mode&lt;/P&gt;&lt;P&gt;                  WITH  update    =   update&lt;/P&gt;&lt;P&gt;                  WITH  xpop      =   xpop&lt;/P&gt;&lt;P&gt;                  WITH  xlog      =   xlog&lt;/P&gt;&lt;P&gt;                  WITH  xinf      =   xinf  AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can pass the variables like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the variables which i have pass to the program all are the selection screen aprameteers of the program .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this will work for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Jan 2009 09:58:57 GMT</pubDate>
    <dc:creator>tarangini_katta</dc:creator>
    <dc:date>2009-01-16T09:58:57Z</dc:date>
    <item>
      <title>Regarding SUBMIT Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-submit-statement/m-p/4994197#M1163191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am calling a batch job (B) (in back groung) using SUBMIT statement, from a report program (Say A). But I have to Pass some internal tables and few variable to the Batch job (B).&lt;/P&gt;&lt;P&gt;Can someone tell me how I can pass the Internal tables and variables ? Is it possible to pass through SUBMIT statement only? Is there some other than the use of Import-Export statement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Pankaj Bist.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jan 2009 09:47:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-submit-statement/m-p/4994197#M1163191</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-16T09:47:19Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SUBMIT Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-submit-statement/m-p/4994198#M1163192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U can use the SHARED MEMORY addition with import/export statement. &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT  ZJG.
 
data: werks type werks_d.
DATA: wa TYPE indx.
 
werks = '1000'.
 
EXPORT werks FROM werks
  TO SHARED MEMORY indx(xy)
  FROM wa
  CLIENT sy-mandt
  ID 'MID'.
 
 
Import program....
 
REPORT  ZP2.
 
data: werks type werks_d.
DATA: wa TYPE indx.
 
IMPORT werks TO werks
  FROM SHARED MEMORY indx(xy)
  TO wa
  CLIENT sy-mandt
  ID 'MID'.
 
  write werks.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jan 2009 09:53:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-submit-statement/m-p/4994198#M1163192</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-16T09:53:58Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SUBMIT Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-submit-statement/m-p/4994199#M1163193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jan 2009 09:55:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-submit-statement/m-p/4994199#M1163193</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-16T09:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SUBMIT Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-submit-statement/m-p/4994200#M1163194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="http://www.sapdev.co.uk/reporting/rep_capturerep.htm" target="test_blank"&gt;http://www.sapdev.co.uk/reporting/rep_capturerep.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdev.co.uk/reporting/rep_submit.htm" target="test_blank"&gt;http://www.sapdev.co.uk/reporting/rep_submit.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jan 2009 09:56:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-submit-statement/m-p/4994200#M1163194</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-16T09:56:02Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SUBMIT Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-submit-statement/m-p/4994201#M1163195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi pankaj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SUBMIT &amp;lt;PROGRAM NAE&amp;gt;   =   ds_name            " Creating batch input session&lt;/P&gt;&lt;P&gt;                  WITH  fl_check  =   fl_check&lt;/P&gt;&lt;P&gt;                  WITH  os_xon    =   os_xon&lt;/P&gt;&lt;P&gt;                  WITH  xnonunic  =   xnonunic&lt;/P&gt;&lt;P&gt;                  WITH  callmode  =   callmode&lt;/P&gt;&lt;P&gt;                  WITH  max_comm  =   max_comm&lt;/P&gt;&lt;P&gt;                  WITH  pa_xprot  =   pa_xprot&lt;/P&gt;&lt;P&gt;                  WITH  anz_mode  =   anz_mode&lt;/P&gt;&lt;P&gt;                  WITH  update    =   update&lt;/P&gt;&lt;P&gt;                  WITH  xpop      =   xpop&lt;/P&gt;&lt;P&gt;                  WITH  xlog      =   xlog&lt;/P&gt;&lt;P&gt;                  WITH  xinf      =   xinf  AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can pass the variables like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the variables which i have pass to the program all are the selection screen aprameteers of the program .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this will work for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jan 2009 09:58:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-submit-statement/m-p/4994201#M1163195</guid>
      <dc:creator>tarangini_katta</dc:creator>
      <dc:date>2009-01-16T09:58:57Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SUBMIT Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-submit-statement/m-p/4994202#M1163196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have tried using WITH statement, but the value is not passing the the Batch job. There is no selection screen for the batch job, I just need to pass few variables and internal tables also.&lt;/P&gt;&lt;P&gt;And I want to use IMPORT-EXPORT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Pankaj Bist.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jan 2009 10:15:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-submit-statement/m-p/4994202#M1163196</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-16T10:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SUBMIT Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-submit-statement/m-p/4994203#M1163197</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pankaj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see related all threads &lt;A href="https://www.sdn.sap.com/irj/scn/advancedsearch?query=submit+program&amp;amp;cat=sdn_all" target="test_blank"&gt;https://www.sdn.sap.com/irj/scn/advancedsearch?query=submit+program&amp;amp;cat=sdn_all&lt;/A&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;Pravin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jan 2009 10:20:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-submit-statement/m-p/4994203#M1163197</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-16T10:20:13Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SUBMIT Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-submit-statement/m-p/4994204#M1163198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This should work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: wa_rspar TYPE rsparams.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: t_rspar LIKE TABLE OF wa_rspar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(I loaded idoc info previously to it)&lt;/P&gt;&lt;P&gt;CLEAR wa_rspar.&lt;/P&gt;&lt;P&gt;wa_rspar-selname = 'P_IDOC'.&lt;/P&gt;&lt;P&gt;wa_rspar-kind = 'P'.&lt;/P&gt;&lt;P&gt;wa_rspar-sign = 'I'.&lt;/P&gt;&lt;P&gt;wa_rspar-option = 'EQ'.&lt;/P&gt;&lt;P&gt;wa_rspar-low = wa_docnum-docnum.&lt;/P&gt;&lt;P&gt;APPEND wa_rspar TO t_rspar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT PROGRAMNAME WITH SELECTION-TABLE t_rspar AND RETURN&lt;/P&gt;&lt;P&gt;EXPORTING LIST TO MEMORY.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Jan 2009 19:20:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-submit-statement/m-p/4994204#M1163198</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-18T19:20:21Z</dc:date>
    </item>
  </channel>
</rss>

