<?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 : Error Capturing in BDC Session Method in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-error-capturing-in-bdc-session-method/m-p/2648236#M610244</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;                       I have done a BDC Program using Session method . I am running my rprogram in Background method using RSBDCSUB Transaction . My query is , I do not want to go to the SM35 Transaction to view the Error , i want to capture in a file and dsplay that file automatically to the End user, Please find me a Solution to my Query, it is Very urgent task&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks In advance&lt;/P&gt;&lt;P&gt;  Nagaraj S.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Aug 2007 11:23:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-24T11:23:28Z</dc:date>
    <item>
      <title>Re : Error Capturing in BDC Session Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-error-capturing-in-bdc-session-method/m-p/2648236#M610244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;                       I have done a BDC Program using Session method . I am running my rprogram in Background method using RSBDCSUB Transaction . My query is , I do not want to go to the SM35 Transaction to view the Error , i want to capture in a file and dsplay that file automatically to the End user, Please find me a Solution to my Query, it is Very urgent task&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks In advance&lt;/P&gt;&lt;P&gt;  Nagaraj S.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 11:23:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-error-capturing-in-bdc-session-method/m-p/2648236#M610244</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T11:23:28Z</dc:date>
    </item>
    <item>
      <title>Re: Re : Error Capturing in BDC Session Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-error-capturing-in-bdc-session-method/m-p/2648237#M610245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA: BDCDATA TYPE TABLE OF BDCDATA. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ITAB TYPE TABLE OF BDCMSGCOLL. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: PROGRAM LIKE SY-REPID, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      WA_BDCDATA TYPE BDCDATA. &lt;/P&gt;&lt;P&gt;WA_BDCDATA-PROGRAM  = 'SAPMS38M'. &lt;/P&gt;&lt;P&gt;WA_BDCDATA-DYNPRO   = '0100'. &lt;/P&gt;&lt;P&gt;WA_BDCDATA-DYNBEGIN = 'X'. &lt;/P&gt;&lt;P&gt;APPEND WA_BDCDATA TO BDCDATA. &lt;/P&gt;&lt;P&gt;CLEAR WA_BDCDATA. &lt;/P&gt;&lt;P&gt;WA_BDCDATA-FNAM     = 'RS38M-PROGRAMM'. &lt;/P&gt;&lt;P&gt;WA_BDCDATA-FVAL     = PROGRAM. &lt;/P&gt;&lt;P&gt;APPEND WA_BDCDATA TO BDCDATA. &lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'SE38'  USING BDCDATA  MODE 'N' &lt;/P&gt;&lt;P&gt;                         MESSAGES INTO ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the message wud b in ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;OPEN DATASET... &lt;/P&gt;&lt;P&gt;TRANSFER&lt;/P&gt;&lt;P&gt;CLOSE&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the file on application server will have all the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create another program to read that file &amp;amp; display errors.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 11:25:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-error-capturing-in-bdc-session-method/m-p/2648237#M610245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T11:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: Re : Error Capturing in BDC Session Method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-error-capturing-in-bdc-session-method/m-p/2648238#M610246</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;We have the tables BDCLD and BDCLM, which will capture the log details inthe session. Firstly, sesssion should be processed. After that log will be created. Then caputure the information into an internal table using BDCLM and BDCLD. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then obsious, process this internal table containing errors with corrections.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if it helps..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Omkar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 11:28:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-error-capturing-in-bdc-session-method/m-p/2648238#M610246</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T11:28:58Z</dc:date>
    </item>
  </channel>
</rss>

