<?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/1809430#M347175</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;In call transaction method u can correct the errors in the following ways&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1&amp;gt;correcting error records interactively.(mode 'A' or 'E')&lt;/P&gt;&lt;P&gt;2&amp;gt;outputting the error records by capturing errors using BDCMSGCOLL&lt;/P&gt;&lt;P&gt;   and again process&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Dec 2006 09:27:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-05T09:27:40Z</dc:date>
    <item>
      <title>BDC problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1809426#M347171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i hav created BDC program........its is working gud in call transaction mode 'A',But it is giving ERROR in mode 'E',....i want to run the tracaction in background.......i had used mode 'N',BUT ONLY those rows r getting uploaded which r not having errors.......i want to upload whole data.....how can i do this..??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2006 09:13:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1809426#M347171</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-05T09:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: BDC problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1809427#M347172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check what errors are you getting using "messages into it_bdcmsgcoll " addition to call transaction statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call transaction 'tocde' using it_bdcdata messages into it_bdcmsgcoll ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_bdcmsgcoll.&lt;/P&gt;&lt;P&gt;call function 'FORMAT_MESSAGE'&lt;/P&gt;&lt;P&gt;exporting....&lt;/P&gt;&lt;P&gt;importing message = v_msg...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ v_msg.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2006 09:16:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1809427#M347172</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-05T09:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: BDC problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1809428#M347173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;JUST GIVE  ONE LINE...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;COMMIT WORK AND WAIT&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;This form specifies synchronous processing. The COMMITstatement waits for the end of processing. Control returns to your program after all high priority (V1) function modules have run successfully.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The AND WAIT form is convenient for switching old programs to synchronous processing without having to re-write the code. Functionally, using AND WAIT for update-task updates is just the same as dialog-task updates with PERFORM ON COMMIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after each updation&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kishan negi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2006 09:17:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1809428#M347173</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-05T09:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: BDC problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1809429#M347174</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;Use Message_text_build to capture the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In call transaction you can see the error by using message_text_build function module.&lt;/P&gt;&lt;P&gt;DATA: W_TEXTOUT LIKE T100-TEXT.&lt;/P&gt;&lt;P&gt;DATA : T_BDCDATA TYPE BDCDATA OCCURS 0 WITH HEADER LINE. DATA: T_MESSTAB TYPE BDCMSGCOLL OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION "VA01' USING T_BDCDATA MODE 'N'&lt;/P&gt;&lt;P&gt;UPDATE 'S'&lt;/P&gt;&lt;P&gt;MESSAGES INTO T_MESSTAB.&lt;/P&gt;&lt;P&gt;if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT T_MESSTAB.&lt;/P&gt;&lt;P&gt;CLEAR T_ERROR.&lt;/P&gt;&lt;P&gt;IF T_MESSTAB-MSGTYP = 'E'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'MESSAGE_TEXT_BUILD'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;MSGID = T_MESSTAB-MSGID&lt;/P&gt;&lt;P&gt;MSGNR = T_MESSTAB-MSGNR&lt;/P&gt;&lt;P&gt;MSGV1 = T_MESSTAB-MSGV1&lt;/P&gt;&lt;P&gt;MSGV2 = T_MESSTAB-MSGV2&lt;/P&gt;&lt;P&gt;MSGV3 = T_MESSTAB-MSGV3&lt;/P&gt;&lt;P&gt;MSGV4 = T_MESSTAB-MSGV4&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;MESSAGE_TEXT_OUTPUT = W_TEXTOUT.&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;MOVE : T_MAIN-PERNR TO T_ERROR-PERNR,&lt;/P&gt;&lt;P&gt;T_MAIN-AMOUNT TO T_ERROR-AMOUNT,&lt;/P&gt;&lt;P&gt;T_MAIN-W_TYPE TO T_ERROR-W_TYPE,&lt;/P&gt;&lt;P&gt;W_TEXTOUT TO T_ERROR-ERROR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND T_ERROR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR T_ERROR.&lt;/P&gt;&lt;P&gt;DELETE T_MAIN.&lt;/P&gt;&lt;P&gt;DELETE T_MESSTAB.&lt;/P&gt;&lt;P&gt;G_ERRCOUNT = G_ERRCOUNT + 1.&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2006 09:19:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1809429#M347174</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2006-12-05T09:19:11Z</dc:date>
    </item>
    <item>
      <title>Re: BDC problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1809430#M347175</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;In call transaction method u can correct the errors in the following ways&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1&amp;gt;correcting error records interactively.(mode 'A' or 'E')&lt;/P&gt;&lt;P&gt;2&amp;gt;outputting the error records by capturing errors using BDCMSGCOLL&lt;/P&gt;&lt;P&gt;   and again process&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2006 09:27:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1809430#M347175</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-05T09:27:40Z</dc:date>
    </item>
    <item>
      <title>Re: BDC problem.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1809431#M347176</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 have to correct the erroneous records manually then reporcess those records again ,  it will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2006 09:54:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-problem/m-p/1809431#M347176</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-05T09:54:38Z</dc:date>
    </item>
  </channel>
</rss>

