<?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 PROCESS. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-process/m-p/3813095#M917110</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mahesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;once the call transaction is successfull, all the messages comes in to the internal table I_MESSAGES,   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for success full entry u will find a   messaged id ( MSGID) and message number (MSGNR) and message type ( MSGTYP )as  'S'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read the internal table I_MESSAGES with message id , type and number, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read table i_messages into l_messages &lt;/P&gt;&lt;P&gt;with key MSGTYP = 'S'&lt;/P&gt;&lt;P&gt;MSGID = 'IW'&lt;/P&gt;&lt;P&gt;MSGNR = 123 &lt;/P&gt;&lt;P&gt;BINARY SEARCH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_MESSAGE_GETDETAIL'&lt;/P&gt;&lt;P&gt;          EXPORTING&lt;/P&gt;&lt;P&gt;            id         = msgid&lt;/P&gt;&lt;P&gt;            number     = msgnr&lt;/P&gt;&lt;P&gt;            language   = sy-langu&lt;/P&gt;&lt;P&gt;            textformat = 'ASC'&lt;/P&gt;&lt;P&gt;          IMPORTING&lt;/P&gt;&lt;P&gt;            message    = message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 May 2008 10:05:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-14T10:05:25Z</dc:date>
    <item>
      <title>BDC CALL TRANSACTION PROCESS.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-process/m-p/3813090#M917105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;how to get the success message after BDC CALL TRANSACTION PROCESS.&lt;/P&gt;&lt;P&gt;PLEASE TELL ME.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 09:47:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-process/m-p/3813090#M917105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-14T09:47:29Z</dc:date>
    </item>
    <item>
      <title>Re: BDC CALL TRANSACTION PROCESS.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-process/m-p/3813091#M917106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mahesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use CALL TRANSACTION USING.... MESSAGES INTO.... statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;John.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 09:51:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-process/m-p/3813091#M917106</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-14T09:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: BDC CALL TRANSACTION PROCESS.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-process/m-p/3813092#M917107</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;Based on Message type u capture the messages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chech that message type 'S'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Passsed into internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT IT_BDC_MESSAGES.&lt;/P&gt;&lt;P&gt;    IF IT_BDC_MESSAGES-msgtyp = 'E'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   SELECT single  * FROM t100  WHERE&lt;/P&gt;&lt;P&gt;                                sprsl = it_BDC_MESSAGES-msgspra&lt;/P&gt;&lt;P&gt;                                AND   arbgb = IT_BDC_MESSAGES-msgid&lt;/P&gt;&lt;P&gt;                                AND   msgnr = IT_BDC_MESSAGES-msgnr.&lt;/P&gt;&lt;P&gt;      IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;        l_mstring = t100-text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Narasimha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: narasimha marella on May 14, 2008 11:56 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 09:54:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-process/m-p/3813092#M917107</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-14T09:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: BDC CALL TRANSACTION PROCESS.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-process/m-p/3813093#M917108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;  In the call transaction command, use the addtion&lt;/P&gt;&lt;P&gt; " Messages into (internal table)".&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;  CALL TRANSACTION wf_tcode&lt;/P&gt;&lt;P&gt;                             USING tb_bdcdata&lt;/P&gt;&lt;P&gt;                                   MODE wf_mode&lt;/P&gt;&lt;P&gt;                                   UPDATE co_s&lt;/P&gt;&lt;P&gt;                                   MESSAGES INTO tb_messtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then read the internal table tb_messtab to check if any of the entries have the value 'E" for the field msgtyp.&lt;/P&gt;&lt;P&gt;If there are no entries with msgtyp=E, it means that CALL TRNSACTION is successful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 09:54:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-process/m-p/3813093#M917108</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-14T09:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: BDC CALL TRANSACTION PROCESS.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-process/m-p/3813094#M917109</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;Download all the messages into BDCMSGCOLL table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if there is no error messages in this table you can give a success message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the syntax below,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*****&lt;/P&gt;&lt;P&gt;call transaction t-code using bdcdata messages into bdcmsgcoll.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read bdcmsgcoll where msgtyp = 'E'.&lt;/P&gt;&lt;P&gt;if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;message s001(zmsg).&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;********&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 09:56:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-process/m-p/3813094#M917109</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-14T09:56:17Z</dc:date>
    </item>
    <item>
      <title>Re: BDC CALL TRANSACTION PROCESS.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-process/m-p/3813095#M917110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mahesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;once the call transaction is successfull, all the messages comes in to the internal table I_MESSAGES,   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for success full entry u will find a   messaged id ( MSGID) and message number (MSGNR) and message type ( MSGTYP )as  'S'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read the internal table I_MESSAGES with message id , type and number, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read table i_messages into l_messages &lt;/P&gt;&lt;P&gt;with key MSGTYP = 'S'&lt;/P&gt;&lt;P&gt;MSGID = 'IW'&lt;/P&gt;&lt;P&gt;MSGNR = 123 &lt;/P&gt;&lt;P&gt;BINARY SEARCH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_MESSAGE_GETDETAIL'&lt;/P&gt;&lt;P&gt;          EXPORTING&lt;/P&gt;&lt;P&gt;            id         = msgid&lt;/P&gt;&lt;P&gt;            number     = msgnr&lt;/P&gt;&lt;P&gt;            language   = sy-langu&lt;/P&gt;&lt;P&gt;            textformat = 'ASC'&lt;/P&gt;&lt;P&gt;          IMPORTING&lt;/P&gt;&lt;P&gt;            message    = message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 10:05:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-process/m-p/3813095#M917110</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-14T10:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: BDC CALL TRANSACTION PROCESS.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-process/m-p/3813096#M917111</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;P&gt;DATA: MESSTAB TYPE TABLE OF BDCMSGCOLL.&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF ERROR_ITAB OCCURS 0,&lt;/P&gt;&lt;P&gt;ERROR(50),&lt;/P&gt;&lt;P&gt;MSGTYP,&lt;/P&gt;&lt;P&gt;END OF ERROR_ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'SE38' USING BDCDATA MODE 'N' &lt;/P&gt;&lt;P&gt;MESSAGES INTO MESSTAB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT MESSTAB.&lt;/P&gt;&lt;P&gt;if messtab-msgtyp eq 'S'.&lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM T100 WHERE SPRSL = MESSTAB-MSGSPRA&lt;/P&gt;&lt;P&gt;AND ARBGB = MESSTAB-MSGID&lt;/P&gt;&lt;P&gt;AND MSGNR = MESSTAB-MSGNR.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;L_MSTRING = T100-TEXT.&lt;/P&gt;&lt;P&gt;IF L_MSTRING CS '&amp;amp;1'.&lt;/P&gt;&lt;P&gt;REPLACE '&amp;amp;1' WITH MESSTAB-MSGV1 INTO L_MSTRING.&lt;/P&gt;&lt;P&gt;REPLACE '&amp;amp;2' WITH MESSTAB-MSGV2 INTO L_MSTRING.&lt;/P&gt;&lt;P&gt;REPLACE '&amp;amp;3' WITH MESSTAB-MSGV3 INTO L_MSTRING.&lt;/P&gt;&lt;P&gt;REPLACE '&amp;amp;4' WITH MESSTAB-MSGV4 INTO L_MSTRING.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;REPLACE '&amp;amp;' WITH MESSTAB-MSGV1 INTO L_MSTRING.&lt;/P&gt;&lt;P&gt;REPLACE '&amp;amp;' WITH MESSTAB-MSGV2 INTO L_MSTRING.&lt;/P&gt;&lt;P&gt;REPLACE '&amp;amp;' WITH MESSTAB-MSGV3 INTO L_MSTRING.&lt;/P&gt;&lt;P&gt;REPLACE '&amp;amp;' WITH MESSTAB-MSGV4 INTO L_MSTRING.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;CONDENSE L_MSTRING.&lt;/P&gt;&lt;P&gt;MOVE L_MSTRING TO ERROR_ITAB-ERROR.&lt;/P&gt;&lt;P&gt;MOVE MESSTAB-MSGTYP TO ERROR_ITAB-MSGTYP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND ERROR_ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;delete error_itab where msgtyp = 'E'. &lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;MOVE MESSTAB TO ERROR_ITAB-ERROR.&lt;/P&gt;&lt;P&gt;APPEND ERROR_ITAB.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 10:07:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-process/m-p/3813096#M917111</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-14T10:07:10Z</dc:date>
    </item>
    <item>
      <title>Re: BDC CALL TRANSACTION PROCESS.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-process/m-p/3813097#M917112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2008 12:46:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-process/m-p/3813097#M917112</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-30T12:46:28Z</dc:date>
    </item>
    <item>
      <title>Re: BDC CALL TRANSACTION PROCESS.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-process/m-p/3813098#M917113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Untill you dont want to share, which solution is helpfull to your query than please don't close by updating them by saying just Thanks.it will create JUNK.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2008 12:55:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-process/m-p/3813098#M917113</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-30T12:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: BDC CALL TRANSACTION PROCESS.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-process/m-p/3813099#M917114</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;  Yes I agree with Amit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It very good practice to close thread with solution of that problem, It will take maximum 2 to 5 minutes time. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do this in your free time. Because it very helpful for your future refrence and also for others..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen.I&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2008 13:05:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-call-transaction-process/m-p/3813099#M917114</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-09-30T13:05:42Z</dc:date>
    </item>
  </channel>
</rss>

