<?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 Execute a function module without going trough se37 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-a-function-module-without-going-trough-se37/m-p/8156551#M1621816</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am building an interface which will allow user to access some function modules without having to go thru se37 (therefore no need to remember module name).&lt;/P&gt;&lt;P&gt;To accessthe program they will just need to click on the push button in the screen explaining wat the FM does.&lt;/P&gt;&lt;P&gt;I want the program to open in a different session than that of my interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-- I do not have the option here to attach a transaction code to the FM and call the transsaction code instead of the FM.&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Sep 2011 09:16:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-09-14T09:16:03Z</dc:date>
    <item>
      <title>Execute a function module without going trough se37</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-a-function-module-without-going-trough-se37/m-p/8156551#M1621816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am building an interface which will allow user to access some function modules without having to go thru se37 (therefore no need to remember module name).&lt;/P&gt;&lt;P&gt;To accessthe program they will just need to click on the push button in the screen explaining wat the FM does.&lt;/P&gt;&lt;P&gt;I want the program to open in a different session than that of my interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-- I do not have the option here to attach a transaction code to the FM and call the transsaction code instead of the FM.&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Sep 2011 09:16:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-a-function-module-without-going-trough-se37/m-p/8156551#M1621816</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-14T09:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: Execute a function module without going trough se37</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-a-function-module-without-going-trough-se37/m-p/8156552#M1621817</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;Check like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZEX_ABAB4CALLTRANSACTION .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: itab_bdc like BDCDATA occurs 0 with header line,&lt;/P&gt;&lt;P&gt;      itab_SPAGPA like RFC_SPAGPA  occurs 0 with header line ,&lt;/P&gt;&lt;P&gt;      itab_messTab like BDCMSGCOLL occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: d_sysubrc like sy-subrc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move: 'AAT' to itab_spagpa-PARID,&lt;/P&gt;&lt;P&gt;           'OR'     to itab_spagpa-parval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND itab_spagpa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ABAP4_CALL_TRANSACTION'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    TCODE                         = 'VA01'&lt;/P&gt;&lt;P&gt;   SKIP_SCREEN                    = 'X'&lt;/P&gt;&lt;P&gt;   MODE_VAL                       = 'A'&lt;/P&gt;&lt;P&gt;   UPDATE_VAL                     = 'A'&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   SUBRC                          = d_sysubrc&lt;/P&gt;&lt;P&gt; TABLES&lt;/P&gt;&lt;P&gt;   USING_TAB                      = itab_bdc&lt;/P&gt;&lt;P&gt;   SPAGPA_TAB                     = itab_SPAGPA&lt;/P&gt;&lt;P&gt;   MESS_TAB                       = itab_messTab&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   CALL_TRANSACTION_DENIED        = 1&lt;/P&gt;&lt;P&gt;   TCODE_INVALID                  = 2&lt;/P&gt;&lt;P&gt;   OTHERS                         = 3&lt;/P&gt;&lt;P&gt;          .&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;Regards,&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Sep 2011 10:00:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-a-function-module-without-going-trough-se37/m-p/8156552#M1621817</guid>
      <dc:creator>madhu_vadlamani</dc:creator>
      <dc:date>2011-09-14T10:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: Execute a function module without going trough se37</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-a-function-module-without-going-trough-se37/m-p/8156553#M1621818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just write "call transaction SE37 with your functon module name( bdcdata )...Similar to a bdc call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kesav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Sep 2011 10:21:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-a-function-module-without-going-trough-se37/m-p/8156553#M1621818</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2011-09-14T10:21:15Z</dc:date>
    </item>
  </channel>
</rss>

