<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2607801#M597898</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And also, most importantly, you can press the F1 button in the ABAP editor and get help about BDC's and call transactions and you would have been able to see all this for yourself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gareth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Aug 2007 13:16:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-02T13:16:14Z</dc:date>
    <item>
      <title>BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2607796#M597893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to handle warning messages in BDC-call transaction method,&lt;/P&gt;&lt;P&gt;The process is continuing only if i press 'enter' manually,how to handle this.&lt;/P&gt;&lt;P&gt;Plz help me out..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;P&gt;Ramya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2007 11:53:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2607796#M597893</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-02T11:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2607797#M597894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;No need to worry about the warning message in call transaction&lt;/P&gt;&lt;P&gt;in 'N' Mode they are automatically taken care.&lt;/P&gt;&lt;P&gt;Just check for a single record by eeping the bdc mode 'N'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points for useful Answers&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2007 11:58:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2607797#M597894</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-02T11:58:03Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2607798#M597895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;you give the update mode as &amp;lt;b&amp;gt;A&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards velu....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2007 12:03:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2607798#M597895</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-02T12:03:47Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2607799#M597896</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;try like this....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can execute the call transaction technique in NO-DISPLAY mode in that case no user interaction is required to processing, all the error records are placed in the BDCMSGCOLL table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL TRANSACTION &amp;lt;name&amp;gt; USING bdcdata
                                              MODE N
                                              UPDATE &amp;lt;S/A&amp;gt;
                                              MESSAGES INTO bdcmsgcoll.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after format the messages using FORMAT_MESSAGES function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;or&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can execute the call transaction technique in NO-DISPLAY mode in that case no user interaction is required to processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION &amp;lt;name&amp;gt; USING bdcdata&lt;/P&gt;&lt;P&gt;                                              MODE N&lt;/P&gt;&lt;P&gt;                                              UPDATE &amp;lt;S/A&amp;gt;.&lt;/P&gt;&lt;P&gt;                                              &lt;/P&gt;&lt;P&gt;         IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;  *****here call session method for handling error records.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;     CALL FUNCTION BDC_OPEN_GROUP. "for crating session.&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;     CALL FUNCTION BDC_INSERT. " to add transaction name and bdcdata table with error records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION BDC_CLOSE_GROUP. "for closing the session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now all the error records are available in log file, for handling error records you must work with SM35.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Ashok Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2007 12:08:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2607799#M597896</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-02T12:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2607800#M597897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hiii &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can also set the Options of BDC ..&lt;/P&gt;&lt;P&gt;Define a structure &lt;/P&gt;&lt;P&gt;l_opt type CTU_PARAMS&lt;/P&gt;&lt;P&gt;then pass the values to this &lt;/P&gt;&lt;P&gt; l_opt-DISMODE   = 'A'.&lt;/P&gt;&lt;P&gt;  l_opt-UPDMODE   = 'S'.&lt;/P&gt;&lt;P&gt;  l_opt-CATTMODE  = ' '.&lt;/P&gt;&lt;P&gt;  l_opt-DEFSIZE   = ' '.&lt;/P&gt;&lt;P&gt;  l_opt-RACOMMIT  = ' '.&lt;/P&gt;&lt;P&gt;  l_opt-NOBINPT   = 'X'.&lt;/P&gt;&lt;P&gt;  l_opt-NOBIEND   = ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then write &lt;/P&gt;&lt;P&gt;call transaction '' using table options fron l_opt .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will solve ur problem &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Hitesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2007 12:36:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2607800#M597897</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-02T12:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2607801#M597898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And also, most importantly, you can press the F1 button in the ABAP editor and get help about BDC's and call transactions and you would have been able to see all this for yourself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gareth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2007 13:16:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/2607801#M597898</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-02T13:16:14Z</dc:date>
    </item>
  </channel>
</rss>

