<?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 BDC working in DEBUG only !! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-working-in-debug-only/m-p/4769138#M1117898</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys&lt;/P&gt;&lt;P&gt;I am stuck doing this for the last 4 hrs...please help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am calling a bdc in the following way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;ls_params-nobiend = 'X'.                                  
  ls_params-dismode = lbimode.  "N                             
  CALL TRANSACTION 'IE02' USING bdcdata OPTIONS FROM ls_params.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is that this is working absolutely fine in debug mode regardless of the lbimode (A,E or N).&lt;/P&gt;&lt;P&gt;But when I run it normally the BDC does not seem to work as the required updates in equipment master do not happen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has any one faced a simillar problem before??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sameer Ahmed on Nov 11, 2008 9:08 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Nov 2008 19:55:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-11T19:55:18Z</dc:date>
    <item>
      <title>BDC working in DEBUG only !!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-working-in-debug-only/m-p/4769138#M1117898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys&lt;/P&gt;&lt;P&gt;I am stuck doing this for the last 4 hrs...please help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am calling a bdc in the following way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;ls_params-nobiend = 'X'.                                  
  ls_params-dismode = lbimode.  "N                             
  CALL TRANSACTION 'IE02' USING bdcdata OPTIONS FROM ls_params.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is that this is working absolutely fine in debug mode regardless of the lbimode (A,E or N).&lt;/P&gt;&lt;P&gt;But when I run it normally the BDC does not seem to work as the required updates in equipment master do not happen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has any one faced a simillar problem before??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sameer Ahmed on Nov 11, 2008 9:08 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Nov 2008 19:55:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-working-in-debug-only/m-p/4769138#M1117898</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-11T19:55:18Z</dc:date>
    </item>
    <item>
      <title>Re: BDC working in DEBUG only !!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-working-in-debug-only/m-p/4769139#M1117899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- can you show the code after CALL TRANSACTION ?&lt;/P&gt;&lt;P&gt;- Do you test, after CALL TRANSACTION, the field sy-subrc ?&lt;/P&gt;&lt;P&gt;- With instruction CALL TRANSACTION, you can save all transaction messages by using "MESSAGES INTO". Are you doing this ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your code should look like &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL TRANSACTION..USING...MESSAGES INTO IT_MESSAGE... .
IF NOT sy-subrc IS INITIAL.
*Display messages to understand what was wrong
     LOOP AT IT_MESSAGE INTO IS_MESSAGE.
     ENDLOOP.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cordialement,&lt;/P&gt;&lt;P&gt;Chaouki.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Nov 2008 20:32:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-working-in-debug-only/m-p/4769139#M1117899</guid>
      <dc:creator>chaouki_akir</dc:creator>
      <dc:date>2008-11-11T20:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: BDC working in DEBUG only !!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-working-in-debug-only/m-p/4769140#M1117900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check for a commit work statement. include that after each call transaction and it should be fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SAPient&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2008 06:25:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-working-in-debug-only/m-p/4769140#M1117900</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-12T06:25:29Z</dc:date>
    </item>
  </channel>
</rss>

