<?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: SUBMIT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/1563914#M254913</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi subhash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Code used to populate 'select-options' &amp;amp; execute report  &lt;/P&gt;&lt;P&gt;DATA: seltab type table of rsparams,&lt;/P&gt;&lt;P&gt;      seltab_wa like line of seltab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  seltab_wa-selname = 'PNPPERNR'.&lt;/P&gt;&lt;P&gt;  seltab_wa-sign    = 'I'.&lt;/P&gt;&lt;P&gt;  seltab_wa-option  = 'EQ'.&lt;/P&gt;&lt;P&gt;  seltab_wa-low = 'value..'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  append seltab_wa to seltab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SUBMIT zreport with selection-table seltab&lt;/P&gt;&lt;P&gt;                                via selection-screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;anver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Oct 2006 10:24:39 GMT</pubDate>
    <dc:creator>anversha_s</dc:creator>
    <dc:date>2006-10-04T10:24:39Z</dc:date>
    <item>
      <title>SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/1563910#M254909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to use SUBMIT command with the selection screen filled with values from an internal table .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     submit RSNAST00 with s_appl   eq vit_nast_final-kappl sign 'I'&lt;/P&gt;&lt;P&gt;                          s_objky  eq vit_nast_final-objky sign 'I'&lt;/P&gt;&lt;P&gt;                          s_kschl  eq vit_nast_final-kschl sign 'I'&lt;/P&gt;&lt;P&gt;                          s_nacha  eq vit_nast_final-nacha sign 'I'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not able to get any result by writing the above code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What shall I do to make it work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 10:10:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/1563910#M254909</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T10:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/1563911#M254910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fill ranges of the same type as the select-options and pass them&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;r_appl-sign = 'I'.&lt;/P&gt;&lt;P&gt;r_appl-option = 'EQ'.&lt;/P&gt;&lt;P&gt;r_appl-low = vit_nast_final-kappl.&lt;/P&gt;&lt;P&gt;append r_appl.&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;submit RSNAST00 with s_appl in R_appl&lt;/P&gt;&lt;P&gt;s_objky in r_objky&lt;/P&gt;&lt;P&gt;s_kschl in r_skschl&lt;/P&gt;&lt;P&gt;s_nacha in r_nacha.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 10:13:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/1563911#M254910</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T10:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/1563912#M254911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi subash &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please refer following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   submit RSNAST00&lt;/P&gt;&lt;P&gt;          with s_objky = r_objky&lt;/P&gt;&lt;P&gt;          with s_kschl = r_kschl&lt;/P&gt;&lt;P&gt;          with s_nacha = r_nacha&lt;/P&gt;&lt;P&gt;          and return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Srikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 10:15:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/1563912#M254911</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T10:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/1563913#M254912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   You Can Do As follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; DATA seltab TYPE rsparams OCCURS 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          curr_report     = 'ZSNP_DEMAND_SUPPLY_MATCH'&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;          selection_table = seltab.&lt;/P&gt;&lt;P&gt;      IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      SUBMIT ZSNP_DEMAND_SUPPLY_MATCH  WITH SELECTION-TABLE seltab .&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;regards&lt;/P&gt;&lt;P&gt;Ahasan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 10:19:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/1563913#M254912</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T10:19:55Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/1563914#M254913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi subhash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Code used to populate 'select-options' &amp;amp; execute report  &lt;/P&gt;&lt;P&gt;DATA: seltab type table of rsparams,&lt;/P&gt;&lt;P&gt;      seltab_wa like line of seltab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  seltab_wa-selname = 'PNPPERNR'.&lt;/P&gt;&lt;P&gt;  seltab_wa-sign    = 'I'.&lt;/P&gt;&lt;P&gt;  seltab_wa-option  = 'EQ'.&lt;/P&gt;&lt;P&gt;  seltab_wa-low = 'value..'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  append seltab_wa to seltab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SUBMIT zreport with selection-table seltab&lt;/P&gt;&lt;P&gt;                                via selection-screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;anver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 10:24:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/1563914#M254913</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-10-04T10:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/1563915#M254914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srikant..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cant use &lt;/P&gt;&lt;P&gt;submit RSNAST00&lt;/P&gt;&lt;P&gt;with s_objky = r_objky&lt;/P&gt;&lt;P&gt;with s_kschl = r_kschl&lt;/P&gt;&lt;P&gt;with s_nacha = r_nacha&lt;/P&gt;&lt;P&gt;and return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the correct way is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;submit RSNAST00&lt;/P&gt;&lt;P&gt;with s_objky in r_objky&lt;/P&gt;&lt;P&gt;with s_kschl in r_kschl&lt;/P&gt;&lt;P&gt;with s_nacha in r_nacha&lt;/P&gt;&lt;P&gt;and return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried both the ways in my program, the second one works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first one passes some weird values to the selection parameters of the called screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyways Thank you for ur valuable assistance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 11:30:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/1563915#M254914</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T11:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/1563916#M254915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the same SUBMIT statement can I capture error if I want to?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 11:36:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/1563916#M254915</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T11:36:09Z</dc:date>
    </item>
  </channel>
</rss>

