<?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 msg in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-msg/m-p/3124557#M742104</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;AFTER CLOSING THE BDC_CLOSE CHECK THE SY-SUBRC VALUE IF ITS 0 THEN YOUR SESSION CREATED SUCCESSFULL &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://allaboutsap.blogspot.com/2007/03/bdc-explained-part-2-sample-program-for.html" target="test_blank"&gt;http://allaboutsap.blogspot.com/2007/03/bdc-explained-part-2-sample-program-for.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rEWARD IF USEFULL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Dec 2007 06:05:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-03T06:05:08Z</dc:date>
    <item>
      <title>BDC msg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-msg/m-p/3124555#M742102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;After Successfully uploading data in given Transaction i want to show at-last.&lt;/P&gt;&lt;P&gt;" This ...material has been Uploaded".&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;if its Fail... then&lt;/P&gt;&lt;P&gt;" This ....Not loaded ".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Who to do that..?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**********&lt;STRONG&gt;Point is assured&lt;/STRONG&gt;********&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Dec 2007 05:58:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-msg/m-p/3124555#M742102</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-03T05:58:20Z</dc:date>
    </item>
    <item>
      <title>Re: BDC msg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-msg/m-p/3124556#M742103</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;  DAta : l_mstring(2000).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL TRANSACTION 'VA01' USING bdcdata&lt;/P&gt;&lt;P&gt;                          MODE mode&lt;/P&gt;&lt;P&gt;                          UPDATE 'A'&lt;/P&gt;&lt;P&gt;                          MESSAGES INTO message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT message INTO wa_message.&lt;/P&gt;&lt;P&gt;    SELECT SINGLE * FROM t100 WHERE sprsl = wa_message-msgspra&lt;/P&gt;&lt;P&gt;                              AND   arbgb = wa_message-msgid&lt;/P&gt;&lt;P&gt;                              AND   msgnr = wa_message-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 wa_message-msgv1 INTO l_mstring.&lt;/P&gt;&lt;P&gt;        REPLACE '&amp;amp;2' WITH wa_message-msgv2 INTO l_mstring.&lt;/P&gt;&lt;P&gt;        REPLACE '&amp;amp;3' WITH wa_message-msgv3 INTO l_mstring.&lt;/P&gt;&lt;P&gt;        REPLACE '&amp;amp;4' WITH wa_message-msgv4 INTO l_mstring.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        REPLACE '&amp;amp;' WITH wa_message-msgv1 INTO l_mstring.&lt;/P&gt;&lt;P&gt;        REPLACE '&amp;amp;' WITH wa_message-msgv2 INTO l_mstring.&lt;/P&gt;&lt;P&gt;        REPLACE '&amp;amp;' WITH wa_message-msgv3 INTO l_mstring.&lt;/P&gt;&lt;P&gt;        REPLACE '&amp;amp;' WITH wa_message-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;      WRITE: / wa_message-msgtyp, l_mstring(250).&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      WRITE: / wa_message.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&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;Santosh Thorat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Dec 2007 06:00:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-msg/m-p/3124556#M742103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-03T06:00:31Z</dc:date>
    </item>
    <item>
      <title>Re: BDC msg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-msg/m-p/3124557#M742104</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;AFTER CLOSING THE BDC_CLOSE CHECK THE SY-SUBRC VALUE IF ITS 0 THEN YOUR SESSION CREATED SUCCESSFULL &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://allaboutsap.blogspot.com/2007/03/bdc-explained-part-2-sample-program-for.html" target="test_blank"&gt;http://allaboutsap.blogspot.com/2007/03/bdc-explained-part-2-sample-program-for.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rEWARD IF USEFULL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Dec 2007 06:05:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-msg/m-p/3124557#M742104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-03T06:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: BDC msg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-msg/m-p/3124558#M742105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks to all , &lt;/P&gt;&lt;P&gt;point has been given Thorat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Dec 2007 11:22:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-msg/m-p/3124558#M742105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-03T11:22:13Z</dc:date>
    </item>
  </channel>
</rss>

