<?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: Multi Input in CALL TRANSACTION in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/multi-input-in-call-transaction/m-p/4802389#M1124435</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;thanks for ur replay.&lt;/P&gt;&lt;P&gt;user need to get output at one time for all selected gven material not by one by one,&lt;/P&gt;&lt;P&gt;have any other option to get this by call trans.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;usman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Nov 2008 06:52:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-21T06:52:17Z</dc:date>
    <item>
      <title>Multi Input in CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multi-input-in-call-transaction/m-p/4802386#M1124432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to run sap standard program by using call transcation.&lt;/P&gt;&lt;P&gt;and i want to give multi input in set parameter field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i used ranges but after run,,, output showing for all materials,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls not me hw to give multi input in Call Transcation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RANGES: l_matnr for mara-matnr.&lt;/P&gt;&lt;P&gt;parameters: p_matnr like mara-matnr,&lt;/P&gt;&lt;P&gt;            p_werks like marc-werks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: i_mara LIKE mara occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from mara&lt;/P&gt;&lt;P&gt;into CORRESPONDING fields of table i_mara&lt;/P&gt;&lt;P&gt;where bmatn = p_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at i_mara.&lt;/P&gt;&lt;P&gt;  move i_mara-matnr to l_matnr-low.&lt;/P&gt;&lt;P&gt;  l_matnr-sign = 'I'.&lt;/P&gt;&lt;P&gt;  l_matnr-option = 'EQ'.&lt;/P&gt;&lt;P&gt;  append l_matnr.&lt;/P&gt;&lt;P&gt;  clear l_matnr.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'MAT' FIELD l_MATNR.&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'WRK' FIELD p_werks.&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'ME1M' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Commit work and wait.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;USman&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Usman Sheriff on Nov 21, 2008 2:35 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 06:33:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multi-input-in-call-transaction/m-p/4802386#M1124432</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-21T06:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: Multi Input in CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multi-input-in-call-transaction/m-p/4802387#M1124433</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 cannot set the range in parameter id instead you call the call transaction in loop itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; RANGES: l_matnr for mara-matnr.&lt;/P&gt;&lt;P&gt;parameters: p_matnr like mara-matnr,&lt;/P&gt;&lt;P&gt;p_werks like marc-werks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: i_mara LIKE mara occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from mara&lt;/P&gt;&lt;P&gt;into CORRESPONDING fields of table i_mara&lt;/P&gt;&lt;P&gt;where bmatn = p_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at i_mara.&lt;/P&gt;&lt;P&gt;move i_mara-matnr to l_matnr-low.&lt;/P&gt;&lt;P&gt;l_matnr-sign = 'I'.&lt;/P&gt;&lt;P&gt;l_matnr-option = 'EQ'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'MAT' FIELD l_MATNR.&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'WRK' FIELD l_werks.&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'ME1M' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;append l_matnr.&lt;/P&gt;&lt;P&gt;clear l_matnr.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 06:36:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multi-input-in-call-transaction/m-p/4802387#M1124433</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-21T06:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: Multi Input in CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multi-input-in-call-transaction/m-p/4802388#M1124434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;thanks for ur replay.&lt;/P&gt;&lt;P&gt;user need to get output at one time for all selected gven material not by one by one,&lt;/P&gt;&lt;P&gt;have any other option to get this by call trans.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;usman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 06:51:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multi-input-in-call-transaction/m-p/4802388#M1124434</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-21T06:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: Multi Input in CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multi-input-in-call-transaction/m-p/4802389#M1124435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;thanks for ur replay.&lt;/P&gt;&lt;P&gt;user need to get output at one time for all selected gven material not by one by one,&lt;/P&gt;&lt;P&gt;have any other option to get this by call trans.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;usman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 06:52:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multi-input-in-call-transaction/m-p/4802389#M1124435</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-21T06:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: Multi Input in CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multi-input-in-call-transaction/m-p/4802390#M1124436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can pass multiple values using SUBMIT statement. Refer to SAP help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg: SUBMIT report1 USING SELECTION-SCREEN '1100' &lt;/P&gt;&lt;P&gt;               WITH SELECTION-TABLE rspar_tab &lt;/P&gt;&lt;P&gt;               WITH selcrit2 BETWEEN 'H' AND 'K' &lt;/P&gt;&lt;P&gt;               WITH selcrit2 IN range_tab &lt;/P&gt;&lt;P&gt;               AND RETURN. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 06:53:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multi-input-in-call-transaction/m-p/4802390#M1124436</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-21T06:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: Multi Input in CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multi-input-in-call-transaction/m-p/4802391#M1124437</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;Try the code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RANGES: l_matnr for mara-matnr.&lt;/P&gt;&lt;P&gt;parameters: p_matnr like mara-matnr,&lt;/P&gt;&lt;P&gt;p_werks like marc-werks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: i_mara LIKE mara occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from mara&lt;/P&gt;&lt;P&gt;into CORRESPONDING fields of table i_mara&lt;/P&gt;&lt;P&gt;where bmatn = p_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at i_mara.&lt;/P&gt;&lt;P&gt;move i_mara-matnr to l_matnr-low.&lt;/P&gt;&lt;P&gt;l_matnr-sign = 'I'.&lt;/P&gt;&lt;P&gt;l_matnr-option = 'EQ'.&lt;/P&gt;&lt;P&gt;append l_matnr.&lt;/P&gt;&lt;P&gt;clear l_matnr.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*SET PARAMETER ID 'MAT' FIELD l_MATNR.&lt;/P&gt;&lt;P&gt;*SET PARAMETER ID 'WRK' FIELD p_werks.&lt;/P&gt;&lt;P&gt;*CALL TRANSACTION 'ME1M' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;*modify -&amp;gt;&lt;/P&gt;&lt;P&gt;SUBMIT rm06im00 AND RETURN WITH if_matnr IN i_matnr&lt;/P&gt;&lt;P&gt;                           WITH i_werks eq p_werks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 10:09:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multi-input-in-call-transaction/m-p/4802391#M1124437</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-21T10:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: Multi Input in CALL TRANSACTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multi-input-in-call-transaction/m-p/4802392#M1124438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Usman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead of calling the TRANSACTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get the program name and use SUBMIT PROGRAM here you can pass the ranges provide the input screen of the called program contains a select option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Ramchander Rao.k&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 10:22:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multi-input-in-call-transaction/m-p/4802392#M1124438</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-21T10:22:57Z</dc:date>
    </item>
  </channel>
</rss>

