<?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/1685402#M301829</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;error handling in session method&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;analyse RSBDC_ANALYSE program in T.code SE80.Now u can see 2 includes .&lt;/P&gt;&lt;P&gt; Take RSBDCIL3.There u will find different Function modules .Put break point on First one .&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Then goto SM35 and enter ur session name and select and Press on ANALYZE(button) application tool.Log is being dispalyed here .So Program is stopped in debugging mode .&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;If u clearly observe , LOG table is built using those Function module .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 06 Nov 2006 16:51:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-06T16:51:39Z</dc:date>
    <item>
      <title>BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1685401#M301828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After session method completed i got errors in log file.&lt;/P&gt;&lt;P&gt;how to upload the data from log file which i got errors?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Nov 2006 16:39:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1685401#M301828</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-06T16:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1685402#M301829</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;error handling in session method&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;analyse RSBDC_ANALYSE program in T.code SE80.Now u can see 2 includes .&lt;/P&gt;&lt;P&gt; Take RSBDCIL3.There u will find different Function modules .Put break point on First one .&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Then goto SM35 and enter ur session name and select and Press on ANALYZE(button) application tool.Log is being dispalyed here .So Program is stopped in debugging mode .&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;If u clearly observe , LOG table is built using those Function module .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Nov 2006 16:51:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1685402#M301829</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-06T16:51:39Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1685403#M301830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can simply re-run the session and only the transactions that were in error will re-process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Nov 2006 16:52:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1685403#M301830</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-11-06T16:52:40Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1685404#M301831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Balu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check this sample codes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;BDL_GET_SESSION_INFO_LOG&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;2. &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'RSTS_OPEN_RLC'    
     EXPORTING      
       NAME         = LOG_NAME      
       CLIENT       = LOG_CLIENT      
       AUTHORITY    = 'BATCH'      
       PROM         = 'I'      
       RECTYP       = 'VNL----'    
     EXCEPTIONS      
       FB_CALL_HANDLE =  4      
       FB_ERROR       =  8      
       FB_RSTS_NOCONV = 12      
       FB_RSTS_OTHER  = 16      
       NO_OBJECT      = 20      
       OTHERS         = 24.  
  
   IF SY-SUBRC &amp;gt; 0.     
     EXIT.  
   ENDIF.  

   CALL FUNCTION 'RSTS_READ'    
     TABLES      
       DATATAB  = LOG_TABLE    
     EXCEPTIONS      
       FB_CALL_HANDLE =  4      
       FB_ERROR       =  8      
       FB_RSTS_NOCONV = 12      
       FB_RSTS_OTHER  = 16      
       OTHERS         = 16.  

   IF SY-SUBRC &amp;gt; 0.     
     EXIT.  
   ENDIF.  

   CALL FUNCTION 'RSTS_CLOSE'    
     EXCEPTIONS      
       OTHERS = 4.  
   
   IF SY-SUBRC &amp;gt; 0.    
     EXIT.  
   ENDIF.

   describe table log_table lines line_count.
   if line_count = 0.
*    raise log_is_empty.   
   endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also you can check FM BP_JOBLOG_READ and BDL_GET_SESSION_INFO_LOG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Nov 2006 17:00:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1685404#M301831</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-06T17:00:17Z</dc:date>
    </item>
  </channel>
</rss>

