<?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 PROBLEM in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/3703819#M891759</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use the message clause of call transaction to capture the messages given by SAP during  PO creation...&lt;/P&gt;&lt;P&gt;e.g.   CALL TRANSACTION c_me21 USING i_bdcdata&lt;/P&gt;&lt;P&gt;                   MODE   w_mode&lt;/P&gt;&lt;P&gt;                   UPDATE w_update&lt;/P&gt;&lt;P&gt;                   MESSAGES INTO i_bdcmessg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(check in debugging in which field of i_bdcmessg, PO Number will be captured....)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 Apr 2008 11:35:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-11T11:35:26Z</dc:date>
    <item>
      <title>BDC PROBLEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/3703818#M891758</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;WHEN WE CREATE ME21N PO ORDER SYSTEM WILL GENERATE PO NUMBER.&lt;/P&gt;&lt;P&gt;HOW TO GET TAT NO WHEN WE UPLOAD ME21N IN BDC.&lt;/P&gt;&lt;P&gt;TAT NO HAS TO BE DISPLAYED .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS,&lt;/P&gt;&lt;P&gt;SRI.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Apr 2008 11:30:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/3703818#M891758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-11T11:30:29Z</dc:date>
    </item>
    <item>
      <title>Re: BDC PROBLEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/3703819#M891759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use the message clause of call transaction to capture the messages given by SAP during  PO creation...&lt;/P&gt;&lt;P&gt;e.g.   CALL TRANSACTION c_me21 USING i_bdcdata&lt;/P&gt;&lt;P&gt;                   MODE   w_mode&lt;/P&gt;&lt;P&gt;                   UPDATE w_update&lt;/P&gt;&lt;P&gt;                   MESSAGES INTO i_bdcmessg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(check in debugging in which field of i_bdcmessg, PO Number will be captured....)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Apr 2008 11:35:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/3703819#M891759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-11T11:35:26Z</dc:date>
    </item>
    <item>
      <title>Re: BDC PROBLEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/3703820#M891760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Id you are getting the number in the BDCMSGCOLL internal table then you can get from it, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not after getting the PO number goto the tables, then get the TAT number&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; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Apr 2008 11:39:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/3703820#M891760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-11T11:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: BDC PROBLEM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/3703821#M891761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL TRANSACTION TCODE USING BDCDATA&lt;/P&gt;&lt;P&gt;                   MODE   P_MODE "CTUMODE&lt;/P&gt;&lt;P&gt;                   UPDATE P_UPDATE "CUPDATE&lt;/P&gt;&lt;P&gt;                   MESSAGES INTO IT_MSGTAB.&lt;/P&gt;&lt;P&gt;  LOOP AT IT_MSGTAB.  "WHERE msgtyp ='E'.&lt;/P&gt;&lt;P&gt;    IF IT_MSGTAB-MSGTYP = 'E'.&lt;/P&gt;&lt;P&gt;      IF V_COUNTER = 1.&lt;/P&gt;&lt;P&gt;        V_COUNTER = V_COUNTER + 1.&lt;/P&gt;&lt;P&gt;        MOVE  W_BKPF TO T_ERRORS.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   move  I_bseg1 to t_errors1.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        MOVE IT_MSGTAB TO IT_MSGTAB2.&lt;/P&gt;&lt;P&gt;        APPEND T_ERRORS.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     APPEND T_ERRORS1.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        APPEND IT_MSGTAB2.&lt;/P&gt;&lt;P&gt;        CLEAR W_BKPF.&lt;/P&gt;&lt;P&gt;        CLEAR W_BSEG.&lt;/P&gt;&lt;P&gt;        CLEAR T_ERRORS.&lt;/P&gt;&lt;P&gt;        CLEAR IT_MSGTAB.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ELSEIF IT_MSGTAB-MSGTYP = 'S'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   move  I_BSEG1 to t_SUCCESS1.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     if it_msgtab-msgv1 CA '0123456789'.&lt;/P&gt;&lt;P&gt;      MOVE  W_BKPF TO T_SUCCESS.&lt;/P&gt;&lt;P&gt;      t_success-newdoc = it_msgtab-msgv1.&lt;/P&gt;&lt;P&gt;      MOVE IT_MSGTAB TO IT_MSGTAB1.&lt;/P&gt;&lt;P&gt;      APPEND IT_MSGTAB1.&lt;/P&gt;&lt;P&gt;      APPEND T_SUCCESS.&lt;/P&gt;&lt;P&gt;     endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Apr 2008 11:53:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/3703821#M891761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-11T11:53:17Z</dc:date>
    </item>
  </channel>
</rss>

