<?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 Session Errors in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-errors/m-p/1218545#M135542</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Anil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use report &amp;lt;b&amp;gt;RSBDCLOG&amp;lt;/b&amp;gt; for Log of the BDC Session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Apr 2006 11:52:04 GMT</pubDate>
    <dc:creator>naimesh_patel</dc:creator>
    <dc:date>2006-04-21T11:52:04Z</dc:date>
    <item>
      <title>BDC Session Errors</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-errors/m-p/1218544#M135541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to capture the BDC session error log as report from SM35 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anil.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Apr 2006 11:05:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-errors/m-p/1218544#M135541</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-21T11:05:23Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Session Errors</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-errors/m-p/1218545#M135542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Anil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use report &amp;lt;b&amp;gt;RSBDCLOG&amp;lt;/b&amp;gt; for Log of the BDC Session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Apr 2006 11:52:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-errors/m-p/1218545#M135542</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2006-04-21T11:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Session Errors</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-errors/m-p/1218546#M135543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anil,&lt;/P&gt;&lt;P&gt; refer this thread for a similar discussion and the solution also.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="65779"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;A code snippet from that thread is below..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: BEGIN OF LOGTABLE OCCURS 50,
   ENTERDATE LIKE BTCTLE-ENTERDATE,   
   ENTERTIME LIKE BTCTLE-ENTERTIME,  
   LOGMESSAGE(400) TYPE C,
END OF LOGTABLE.

DATA: CHARCP LIKE RSTSTYPE-CHARCO VALUE '0000'.

CALL FUNCTION 'RSTS_GET_ATTRIBUTES'
EXPORTING
AUTHORITY = ' '
CLIENT = APQL-MANDANT
NAME = APQL-TEMSEID
IMPORTING
CHARCO = CHARCP
EXCEPTIONS
FB_ERROR = 1
FB_RSTS_OTHER = 2
NO_OBJECT = 3
NO_PERMISSION = 4
OTHERS = 5.

CALL FUNCTION 'RSTS_OPEN_RLC'
EXPORTING
NAME = APQL-TEMSEID
CLIENT = APQL-MANDANT
AUTHORITY = 'BATCH'
PROM = 'I'
RECTYP = 'VNL----'
CHARCO = CHARCP
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.

LOG_TABLE will contain the log you want.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;satesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Apr 2006 11:57:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-errors/m-p/1218546#M135543</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-21T11:57:29Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Session Errors</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-errors/m-p/1218547#M135544</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;use RSBDCLOG or in turn trap the error in the program and pass it to internal table!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;alter&lt;/P&gt;&lt;P&gt;if u r using call transaction in the program u can declare an internal table of type bdcmsgcoll and error messages will b stored!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz reward points for helpful post and close the thread!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gunjan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Apr 2006 12:21:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-errors/m-p/1218547#M135544</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-21T12:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Session Errors</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-errors/m-p/1218548#M135545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use RSBDC_PROTOCOL or RSBDCREO&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Apr 2006 12:23:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-errors/m-p/1218548#M135545</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-21T12:23:47Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Session Errors</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-errors/m-p/1218549#M135546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to all..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me try with options which u have given to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anil.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Apr 2006 12:33:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-errors/m-p/1218549#M135546</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-21T12:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: BDC Session Errors</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-errors/m-p/1218550#M135547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ANil,&lt;/P&gt;&lt;P&gt; Kindly reward all your helpful answers and close the thread if the problem is solved..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;satesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Apr 2006 12:35:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-session-errors/m-p/1218550#M135547</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-21T12:35:01Z</dc:date>
    </item>
  </channel>
</rss>

