<?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 issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue/m-p/2464893#M553415</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shiva,&lt;/P&gt;&lt;P&gt; I beleive your not printing the error list right? u want to display the output what ever uploaded into data base table. then after uplaoding the data we can display the output lise by selecting the data from data base table. &lt;/P&gt;&lt;P&gt;Hope this helps you. Reply for queries, shall post the updates. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.  &lt;/P&gt;&lt;P&gt;Kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 Jul 2007 08:22:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-03T08:22:02Z</dc:date>
    <item>
      <title>BDC issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue/m-p/2464889#M553411</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;   Iam using call transaction method to upload the Vendor details and my requirement is like i have to display the all the vendor no's created as list output at last. My question is how to capture the created vendor no's?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jul 2007 07:27:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue/m-p/2464889#M553411</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-03T07:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: BDC issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue/m-p/2464890#M553412</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;U should capture the messages generated after saving the new vendor, here you can find out the new number:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;ATA: T_MESSAGES TYPE TABLE OF BDCMSGCOLL WITH HEADER LINE.

CALL TRANSACTION 'XK01' USING BDC_TAB
                              MESSAGES INTO T_MESSAGES. 
IF SY-SUBRC = 0.
  LOOP AT T_MESSAGES.
*---&amp;gt; Write the messages with nr vendor  
  ENDLOOP.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The message should be 170 of class F2 (I'm not sure but you can check in debug, if it's so:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT T_MESSAGES WHERE MSGID = 'F2'
                     AND MSGNR = '170'.
  WRITE T_MESSAGES-MSGV1.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jul 2007 07:28:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue/m-p/2464890#M553412</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-03T07:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: BDC issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue/m-p/2464891#M553413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shiva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the created vendor number are returned in the MESSAGES &amp;lt;itab&amp;gt; table,.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you just check once in debugging.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jul 2007 07:29:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue/m-p/2464891#M553413</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-03T07:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: BDC issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue/m-p/2464892#M553414</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;I fu are using the call transaction then definitely you cna see them in the messages tab.The structure name is BDCMSGCOLL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if useful.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jul 2007 08:12:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue/m-p/2464892#M553414</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-03T08:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: BDC issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue/m-p/2464893#M553415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shiva,&lt;/P&gt;&lt;P&gt; I beleive your not printing the error list right? u want to display the output what ever uploaded into data base table. then after uplaoding the data we can display the output lise by selecting the data from data base table. &lt;/P&gt;&lt;P&gt;Hope this helps you. Reply for queries, shall post the updates. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.  &lt;/P&gt;&lt;P&gt;Kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jul 2007 08:22:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue/m-p/2464893#M553415</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-03T08:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: BDC issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue/m-p/2464894#M553416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     Try This&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL Transaction 'XK01' using Bdcdata mode 'N' update 'A'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Get Parameter id  'LIF'  field VendNo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here Vendno is a variable which will contain Created Vendor no&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful.&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;A.Thuyavan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jul 2007 09:19:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue/m-p/2464894#M553416</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-03T09:19:43Z</dc:date>
    </item>
  </channel>
</rss>

