<?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 NOT WORKING BACKGROUND in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-not-working-background/m-p/1665674#M294702</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;           I did a bdc for the tcode mira. It works fine in the foreground and displays&lt;/P&gt;&lt;P&gt;a status message "INVOICE DOCUMENT 411523 POSTED" is raised by SAP itself.&lt;/P&gt;&lt;P&gt;But in backgroud the program gets finished,but no documents is posted.&lt;/P&gt;&lt;P&gt;I want to run the program only in background .How to handle the message in background?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Nov 2006 05:46:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-23T05:46:45Z</dc:date>
    <item>
      <title>BDC NOT WORKING BACKGROUND</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-not-working-background/m-p/1665674#M294702</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;           I did a bdc for the tcode mira. It works fine in the foreground and displays&lt;/P&gt;&lt;P&gt;a status message "INVOICE DOCUMENT 411523 POSTED" is raised by SAP itself.&lt;/P&gt;&lt;P&gt;But in backgroud the program gets finished,but no documents is posted.&lt;/P&gt;&lt;P&gt;I want to run the program only in background .How to handle the message in background?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2006 05:46:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-not-working-background/m-p/1665674#M294702</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-23T05:46:45Z</dc:date>
    </item>
    <item>
      <title>Re: BDC NOT WORKING BACKGROUND</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-not-working-background/m-p/1665675#M294703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ru  using Call Transaction or session method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u r using Call transaction then pass the messages into one more internal table and display the messages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex.&lt;/P&gt;&lt;P&gt;DATA: I_MESSTAB LIKE BDCMSGCOLL OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'MIR7' USING I_BDCDATA&lt;/P&gt;&lt;P&gt;                     MODE   G_MODE&lt;/P&gt;&lt;P&gt;                     UPDATE 'S'&lt;/P&gt;&lt;P&gt;                     MESSAGES INTO I_MESSTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at i_messtab and display the messages.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2006 05:52:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-not-working-background/m-p/1665675#M294703</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-23T05:52:44Z</dc:date>
    </item>
    <item>
      <title>Re: BDC NOT WORKING BACKGROUND</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-not-working-background/m-p/1665676#M294704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;r u using .&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;commit work.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;after update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;null&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2006 05:53:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-not-working-background/m-p/1665676#M294704</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-23T05:53:08Z</dc:date>
    </item>
    <item>
      <title>Re: BDC NOT WORKING BACKGROUND</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-not-working-background/m-p/1665677#M294705</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;Did u add COMMIT WORK AND WAIT after call to MIRA ? If not, add this and check again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ramakrishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2006 05:54:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-not-working-background/m-p/1665677#M294705</guid>
      <dc:creator>venkata_ramisetti</dc:creator>
      <dc:date>2006-11-23T05:54:18Z</dc:date>
    </item>
    <item>
      <title>Re: BDC NOT WORKING BACKGROUND</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-not-working-background/m-p/1665678#M294706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ramakrishana ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      Even i hav the same problem , could u please tell me in wat way COMMIT WORK will play in this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-shan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2006 05:57:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-not-working-background/m-p/1665678#M294706</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-23T05:57:11Z</dc:date>
    </item>
  </channel>
</rss>

