<?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: BDC Call Transaction method in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-method/m-p/5540208#M1265305</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hiii,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;while calling call transaction u can refer the below code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:   it_bdcmsg TYPE STANDARD TABLE OF bdcmsgcoll,&lt;/P&gt;&lt;P&gt;        wa_bdcmsg TYPE bdcmsgcoll.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL TRANSACTION 'MEK1' USING it_bdcdata OPTIONS FROM x_ctuprms&lt;/P&gt;&lt;P&gt;                             MESSAGES INTO it_bdcmsg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT it_bdcmsg INTO wa_bdcmsg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'FORMAT_MESSAGE'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        id        = wa_bdcmsg-msgid&lt;/P&gt;&lt;P&gt;        lang      = sy-langu&lt;/P&gt;&lt;P&gt;        no        = wa_bdcmsg-msgnr&lt;/P&gt;&lt;P&gt;        v1        = wa_bdcmsg-msgv1&lt;/P&gt;&lt;P&gt;        v2        = wa_bdcmsg-msgv2&lt;/P&gt;&lt;P&gt;        v3        = wa_bdcmsg-msgv3&lt;/P&gt;&lt;P&gt;        v4        = wa_bdcmsg-msgv4&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        msg       = message&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        not_found = 1&lt;/P&gt;&lt;P&gt;        OTHERS    = 2.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anil N.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Apr 2009 10:49:28 GMT</pubDate>
    <dc:creator>former_member438956</dc:creator>
    <dc:date>2009-04-13T10:49:28Z</dc:date>
    <item>
      <title>BDC Call Transaction method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-method/m-p/5540206#M1265303</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;How to record the logs in BDC Call transaction method? &lt;/P&gt;&lt;P&gt;Please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Apr 2009 10:44:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-method/m-p/5540206#M1265303</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-13T10:44:32Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Call Transaction method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-method/m-p/5540207#M1265304</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; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL TRANSACTION c_pa30 USING i_bdc_data MODE 'N'
                                           MESSAGES INTO i_msg_tab.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; i_msg_tab table holds the all the messages which are returned while processing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Apr 2009 10:48:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-method/m-p/5540207#M1265304</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-13T10:48:39Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Call Transaction method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-method/m-p/5540208#M1265305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hiii,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;while calling call transaction u can refer the below code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:   it_bdcmsg TYPE STANDARD TABLE OF bdcmsgcoll,&lt;/P&gt;&lt;P&gt;        wa_bdcmsg TYPE bdcmsgcoll.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL TRANSACTION 'MEK1' USING it_bdcdata OPTIONS FROM x_ctuprms&lt;/P&gt;&lt;P&gt;                             MESSAGES INTO it_bdcmsg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT it_bdcmsg INTO wa_bdcmsg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'FORMAT_MESSAGE'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        id        = wa_bdcmsg-msgid&lt;/P&gt;&lt;P&gt;        lang      = sy-langu&lt;/P&gt;&lt;P&gt;        no        = wa_bdcmsg-msgnr&lt;/P&gt;&lt;P&gt;        v1        = wa_bdcmsg-msgv1&lt;/P&gt;&lt;P&gt;        v2        = wa_bdcmsg-msgv2&lt;/P&gt;&lt;P&gt;        v3        = wa_bdcmsg-msgv3&lt;/P&gt;&lt;P&gt;        v4        = wa_bdcmsg-msgv4&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        msg       = message&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        not_found = 1&lt;/P&gt;&lt;P&gt;        OTHERS    = 2.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anil N.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Apr 2009 10:49:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-method/m-p/5540208#M1265305</guid>
      <dc:creator>former_member438956</dc:creator>
      <dc:date>2009-04-13T10:49:28Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Call Transaction method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-method/m-p/5540209#M1265306</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 see the log through SM35 OR after bdc a log automatically generates you can save it in spreadsheet. Is there any specific requirement for recording of log.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Himanshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Apr 2009 11:01:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-method/m-p/5540209#M1265306</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-13T11:01:00Z</dc:date>
    </item>
  </channel>
</rss>

