<?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: Call transaction Method in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-method/m-p/930084#M60633</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks guys .. Submit with Selection-table works ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Ravi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Sep 2005 14:44:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-09-20T14:44:08Z</dc:date>
    <item>
      <title>Call transaction Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-method/m-p/930075#M60624</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;This doubt may be silly,I am just curious if we can try this way .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can we use the CALL TRANSACTION method to populate the Selection Screen of a report and then SUBMIT to memory and read the contents of the REPORT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ravi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2005 13:46:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-method/m-p/930075#M60624</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-20T13:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-method/m-p/930076#M60625</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 think you can only program: call transaction OR submit report (but not call transaction AND submit report)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2005 13:51:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-method/m-p/930076#M60625</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2005-09-20T13:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-method/m-p/930077#M60626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try pass the parameters thru the SUBMIT statement using the WITH &amp;lt;parameter&amp;gt; = P_parm syntax or the SELECTION-TABLE extension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Rich Heilman&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2005 13:52:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-method/m-p/930077#M60626</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-09-20T13:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-method/m-p/930078#M60627</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;if the report program has the tcode you can use the call transaction.  but you try with this&lt;/P&gt;&lt;P&gt;&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;MOVE: 'LANGU'  TO SELTAB_WA-SELNAME, &lt;/P&gt;&lt;P&gt;      'S'      TO SELTAB_WA-KIND,      " SELECT-OPTION &lt;/P&gt;&lt;P&gt;      'I'      TO SELTAB_WA-SIGN, &lt;/P&gt;&lt;P&gt;      'BT'     TO SELTAB_WA-OPTION, &lt;/P&gt;&lt;P&gt;      'D'      TO SELTAB_WA-LOW, &lt;/P&gt;&lt;P&gt;      'I'      TO SELTAB_WA-HIGH. &lt;/P&gt;&lt;P&gt;APPEND SELTAB_WA TO SELTAB. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE: 'E'      TO SELTAB_WA-SIGN, &lt;/P&gt;&lt;P&gt;      'EQ'     TO SELTAB_WA-OPTION, &lt;/P&gt;&lt;P&gt;      'F'      TO SELTAB_WA-LOW, &lt;/P&gt;&lt;P&gt;      SPACE    TO SELTAB_WA-HIGH. &lt;/P&gt;&lt;P&gt;APPEND SELTAB_WA TO SELTAB. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR SELTAB_WA. &lt;/P&gt;&lt;P&gt;MOVE: 'ARBGB' TO SELTAB_WA-SELNAME, &lt;/P&gt;&lt;P&gt;      'P'     TO SELTAB_WA-KIND,      " PARAMETER &lt;/P&gt;&lt;P&gt;      'XX'    TO SELTAB_WA-LOW. &lt;/P&gt;&lt;P&gt;APPEND SELTAB_WA TO SELTAB. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT report_name&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      USING SELECTION-SET 'VARIANT1' &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      WITH  ARBGB CP 'A*' &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;       WITH  SELECTION-TABLE SELTAB &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;and in the calling report you export the value to memory by using Export&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2005 13:55:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-method/m-p/930078#M60627</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-20T13:55:52Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-method/m-p/930079#M60628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Example.....  this program calls MB51 transactions passing some parmeters to the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0002 .


DATA: SELTAB     TYPE TABLE OF RSPARAMS,
      SELTAB_WA  LIKE LINE OF SELTAB.

MOVE: 'MATNR'  TO SELTAB_WA-SELNAME,
      'S'      TO SELTAB_WA-KIND,      " SELECT-OPTION
      'I'      TO SELTAB_WA-SIGN,
      'BT'     TO SELTAB_WA-OPTION,
      '40000000'      TO SELTAB_WA-LOW,
      '40000010'      TO SELTAB_WA-HIGH.
APPEND SELTAB_WA TO SELTAB.

MOVE: 'BUDAT'  to seltab_wa-selname,
      'S'      to seltab_wa-kind,
      'I'      TO SELTAB_WA-SIGN,
      'EQ'     TO SELTAB_WA-OPTION,
       sy-datum      TO SELTAB_WA-LOW.
APPEND SELTAB_WA TO SELTAB.


submit RM07DOCS via selection-screen
        with selection-table seltab and return.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich HEilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2005 13:59:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-method/m-p/930079#M60628</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-09-20T13:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-method/m-p/930080#M60629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Heilman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried with the Submit option using SELECTION-TABLE,I donno if i am doing the correct thing, but i guess we can only enter the names of Selections Fields, not values, Values seems to come from some where else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I Used:&lt;/P&gt;&lt;P&gt;SUBMIT &amp;lt;progName&amp;gt; with SELECTION-TABLE seltab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;seltab has a structure of RSPARAMS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I populated the seltab Structure for a report using the FM 'RS_REFRESH_FROM_SELECTOPTIONS'. Now i get the Field names for all the Selection Screen Fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structure of Seltab like RSPARAMS:&lt;/P&gt;&lt;P&gt;Selname&lt;/P&gt;&lt;P&gt;kind&lt;/P&gt;&lt;P&gt;sign&lt;/P&gt;&lt;P&gt;option&lt;/P&gt;&lt;P&gt;Low&lt;/P&gt;&lt;P&gt;High&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, my selection screen has a field by name Material Number(MATNR) but where should i enter its values ('0000010010')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Ravi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2005 14:26:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-method/m-p/930080#M60629</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-20T14:26:07Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-method/m-p/930081#M60630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please implement the sample program I've provided above.  This will tell you what you need to do.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2005 14:28:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-method/m-p/930081#M60630</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-09-20T14:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-method/m-p/930082#M60631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I shall try the new posts by Heilman and Sasi Kumar and let u know my status...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ravi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2005 14:33:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-method/m-p/930082#M60631</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-20T14:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-method/m-p/930083#M60632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am curious as to why you asked this. Why do you want to do a call transaction and a submit? Call transaction mechanism is meant to replace manual entry of values/actions on the screen(s) of the transaction. So you can do a call transaction of your report, by entering the fields of your selection screen and the action of executng it(F8 or ONLI). But that results in your report being executed and the output is sent to spool or screen depending on how you executed it. So where do you think you can interrupt this process and then do a SUBMIT of the same report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have specific need in mind, please let us know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2005 14:36:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-method/m-p/930083#M60632</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-20T14:36:50Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-method/m-p/930084#M60633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks guys .. Submit with Selection-table works ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Ravi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2005 14:44:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-method/m-p/930084#M60633</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-20T14:44:08Z</dc:date>
    </item>
  </channel>
</rss>

