<?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: BDCdata not uploading in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdcdata-not-uploading/m-p/4087426#M977296</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes i am Using Mode 'A' in Debuging.. and this is my Custmize&lt;/P&gt;&lt;P&gt;bdc data.. i.e bdcdata3.. and its successfully appending all values includeing Fnam and Fval.&lt;/P&gt;&lt;P&gt;any other clue.?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 05 Jul 2008 14:14:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-05T14:14:36Z</dc:date>
    <item>
      <title>BDCdata not uploading</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdcdata-not-uploading/m-p/4087423#M977293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Function Module i am using BDC its appending data in&lt;/P&gt;&lt;P&gt;BDCDATA succefully but  when i call Trasaction .. my screen is blank..&lt;/P&gt;&lt;P&gt;way..&lt;/P&gt;&lt;P&gt;here is my code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; data  l_mode.&lt;/P&gt;&lt;P&gt;         l_mode = 'N'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        CALL TRANSACTION 'XD01' USING bdcdata3&lt;/P&gt;&lt;P&gt;                                    MODE  l_mode&lt;/P&gt;&lt;P&gt;                                    UPDATE 'S'&lt;/P&gt;&lt;P&gt;                             MESSAGES INTO messtab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Jul 2008 13:44:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdcdata-not-uploading/m-p/4087423#M977293</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-05T13:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: BDCdata not uploading</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdcdata-not-uploading/m-p/4087424#M977294</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;Please make the Mode as 'A' while running the program in debugging mode and check if the values are coming properly to the XD01 screen. Correct the errors if you get any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nadim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Jul 2008 13:49:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdcdata-not-uploading/m-p/4087424#M977294</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-05T13:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: BDCdata not uploading</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdcdata-not-uploading/m-p/4087425#M977295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jim,&lt;/P&gt;&lt;P&gt;How u declared ur internal table bdcdata3?&lt;/P&gt;&lt;P&gt;If u declared with header line then pass it like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'XD01' USING &lt;STRONG&gt;bdcdata3[]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;MODE l_mode&lt;/P&gt;&lt;P&gt;UPDATE 'S'&lt;/P&gt;&lt;P&gt;MESSAGES INTO messtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also put a break point at call transaction statement and change l_mode value from &lt;STRONG&gt;N&lt;/STRONG&gt; to &lt;STRONG&gt;A&lt;/STRONG&gt; and check whether values are getting populated or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Jul 2008 13:50:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdcdata-not-uploading/m-p/4087425#M977295</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-07-05T13:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: BDCdata not uploading</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdcdata-not-uploading/m-p/4087426#M977296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes i am Using Mode 'A' in Debuging.. and this is my Custmize&lt;/P&gt;&lt;P&gt;bdc data.. i.e bdcdata3.. and its successfully appending all values includeing Fnam and Fval.&lt;/P&gt;&lt;P&gt;any other clue.?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Jul 2008 14:14:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdcdata-not-uploading/m-p/4087426#M977296</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-05T14:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: BDCdata not uploading</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdcdata-not-uploading/m-p/4087427#M977297</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;just check the screen number and also see if you are passing the values properly in the field .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the name of the fields in which you are passing the values should not be in inverted colons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just check the screen numbers as well.&lt;/P&gt;&lt;P&gt;and debug in 'A' mode to check if BDC is running properly or not.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Jul 2008 14:22:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdcdata-not-uploading/m-p/4087427#M977297</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-05T14:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: BDCdata not uploading</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdcdata-not-uploading/m-p/4087428#M977298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jim,&lt;/P&gt;&lt;P&gt;Then there must be problem with populating BDC data. If the bdc data is not in same order as it is in recording it wont work. Compare your coding(Population of BDCDATA 3 table) with your recording. I don't think there is any other problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also paste ur code so that if it is identifiable then we may help u out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Jul 2008 14:49:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdcdata-not-uploading/m-p/4087428#M977298</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-07-05T14:49:29Z</dc:date>
    </item>
  </channel>
</rss>

