<?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 STATEMENT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463467#M1251545</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Avinash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, for reply but using this method it takes lot of time to execute a single record and it is reading the record many times and is giving dump but when same parameters i pass in mc.9 it gives only 1 record&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this problem arises only when i specify material no. otherwise it gives correct o/p when i specify all 3 storage location and no material number &lt;/P&gt;&lt;P&gt;please help,&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Apr 2009 06:07:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-10T06:07:16Z</dc:date>
    <item>
      <title>SUBMIT STATEMENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463462#M1251540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In program i am calling another report using submit  following statement i am using&lt;/P&gt;&lt;P&gt;PARAMETERS : PLNT LIKE YWIP-WERKS OBLIGATORY.                    "PLANT&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : SLOC FOR S032-LGORT OBLIGATORY,&lt;/P&gt;&lt;P&gt;                 MATNR  FOR S032-MATNR.     &lt;/P&gt;&lt;P&gt;SUBMIT RMCB0300 WITH SL_WERKS-LOW = PLNT&lt;/P&gt;&lt;P&gt;                    WITH SL_LGORT = SLOC-LOW&lt;/P&gt;&lt;P&gt;                    WITH SL_MATNR = MATNR-LOW&lt;/P&gt;&lt;P&gt;                    WITH SL_MATNR = MATNR-HIGH&lt;/P&gt;&lt;P&gt;                    WITH SL_MTART = 'HALB' WITH SL_MTART = 'VERP'&lt;/P&gt;&lt;P&gt;                    WITH SL_MTART = 'ROH' WITH SL_MTART = 'FERT'&lt;/P&gt;&lt;P&gt;                    WITH SL_SPMON-LOW = FPERIOD&lt;/P&gt;&lt;P&gt;                    WITH SLV_NO = 'STK'&lt;/P&gt;&lt;P&gt;                    WITH SL_SPMON-HIGH = FPERIOD EXPORTING LIST TO MEMORY AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for storage location if i give more than 1 storage location  for particular material&lt;/P&gt;&lt;P&gt;then it repeats the same values for all storage location&lt;/P&gt;&lt;P&gt;but material is available only for  1 storage location&lt;/P&gt;&lt;P&gt;how will i rectify this problem?&lt;/P&gt;&lt;P&gt;please help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 05:36:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463462#M1251540</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-10T05:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT STATEMENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463463#M1251541</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;You can use this way.. as you can n number of values in the selection screen fields of called program.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA SELECTION_TABLE TYPE STANDARD TABLE OF  RSPARAMS.
SUBMIT RMCB0300
          WITH SELECTION-TABLE selection_table 
EXPORTING LIST TO MEMORY AND RETURN.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer to the DEMO example provided by SAP..[Filling the Selection Screen of a Called Program  |http://help.sap.com/saphelp_nw70/helpdata/EN/9f/dba51a35c111d1829f0000e829fbfe/frameset.htm]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 05:41:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463463#M1251541</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-10T05:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT STATEMENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463464#M1251542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,Shruti,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem is in the following Lines i think,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;WITH SL_MATNR = MATNR-LOW
WITH SL_MATNR = MATNR-HIGH&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change the above lines to one following.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;WITH SL_MATNR IN MATNR&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope above will solve out your problem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Reply if any issue,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 05:41:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463464#M1251542</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-04-10T05:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT STATEMENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463465#M1251543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shruti,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also pass like this,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT z_class_emp&lt;/P&gt;&lt;P&gt;USING SELECTION-SET 'VARIANT1' &lt;/P&gt;&lt;P&gt;AND RETURN.&lt;/P&gt;&lt;P&gt;And IMPORT from memory ID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Dileep .C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 05:52:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463465#M1251543</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-10T05:52:51Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT STATEMENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463466#M1251544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Faisal thanks for ur  reply i tried using ur mathod but still same record is being displayed for all 3storage location but material is only available for 1 storage location&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 05:53:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463466#M1251544</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-10T05:53:46Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT STATEMENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463467#M1251545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Avinash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, for reply but using this method it takes lot of time to execute a single record and it is reading the record many times and is giving dump but when same parameters i pass in mc.9 it gives only 1 record&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this problem arises only when i specify material no. otherwise it gives correct o/p when i specify all 3 storage location and no material number &lt;/P&gt;&lt;P&gt;please help,&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 06:07:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463467#M1251545</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-10T06:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT STATEMENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463468#M1251546</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;You need to check the material for particular Storage location even after giving Multiple strorage location.&lt;/P&gt;&lt;P&gt;Then it is difficult to do that ..as your passing material and storage location in different parameters. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead you call the SUBMIT statement twice once for material number with particular storage location and second without material number.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 06:22:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463468#M1251546</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-10T06:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT STATEMENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463469#M1251547</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;PARAMETERS : PLNT LIKE YWIP-WERKS OBLIGATORY. "PLANT&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : SLOC FOR S032-LGORT OBLIGATORY,&lt;/P&gt;&lt;P&gt;MATNR FOR S032-MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;r_mtart-low = 'HALB'&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;r_mtart-option = 'EQ'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;r_mtart-sign = 'I'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;append r_mtart&lt;/STRONG&gt; " do same for other mtart values and spmon&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT RMCB0300 WITH SL_WERKS-LOW = PLNT&lt;/P&gt;&lt;P&gt;WITH SL_LGORT &lt;STRONG&gt;in sloc&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;WITH SL_MATNR &lt;STRONG&gt;in matnr&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;WITH SL_MTART &lt;STRONG&gt;in r_mtart&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;WITH SL_SPMON &lt;STRONG&gt;in r_spmon&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;WITH SLV_NO = 'STK'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORTING LIST TO MEMORY AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 06:24:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463469#M1251547</guid>
      <dc:creator>dev_parbutteea</dc:creator>
      <dc:date>2009-04-10T06:24:03Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT STATEMENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463470#M1251548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for ur reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but what  declaration should be done  r_tart ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 06:39:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463470#M1251548</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-10T06:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT STATEMENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463471#M1251549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;But the problem is that user will be completely aware of exact storage location he will enter all storage location&lt;/P&gt;&lt;P&gt;applicable for that material and then he will check with mc.9 and my zprogram material no. and storage location both have to passed compulsory&lt;/P&gt;&lt;P&gt;Are u aware whether any table stores current data of mc.9 otherwise i can fetch data from their&lt;/P&gt;&lt;P&gt;Thanks for reply&lt;/P&gt;&lt;P&gt;But still my issue has not been resolved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 06:46:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463471#M1251549</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-10T06:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT STATEMENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463472#M1251550</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;ranges: r_mtart  FOR T134-mtart .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 07:19:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463472#M1251550</guid>
      <dc:creator>dev_parbutteea</dc:creator>
      <dc:date>2009-04-10T07:19:23Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT STATEMENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463473#M1251551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for ur prompt reply &lt;/P&gt;&lt;P&gt;i have tried the solution that u have provided&lt;/P&gt;&lt;P&gt;But still it is giving 3 records for all storage but record is available only for 1 storage location&lt;/P&gt;&lt;P&gt;Further help will be appreciated &lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 07:27:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463473#M1251551</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-10T07:27:17Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT STATEMENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463474#M1251552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;will u be able to help me further&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 07:28:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463474#M1251552</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-10T07:28:24Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT STATEMENT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463475#M1251553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use Import and Export from the memory ID's .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 07:44:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement/m-p/5463475#M1251553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-10T07:44:48Z</dc:date>
    </item>
  </channel>
</rss>

