<?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: SM35 Session Log in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm35-session-log/m-p/4636403#M1091610</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First of all i dont suppose that you can get the complete details of the queue id in this manner . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There has to be robust code in order to achieve this . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because the queue id is not at all touched through this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u confirm from seeing into the queue dump and check if the data u r creating is present there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Queue dump analysis and check on the fields where customer is getting created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vijay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Oct 2008 12:09:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-28T12:09:10Z</dc:date>
    <item>
      <title>SM35 Session Log</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm35-session-log/m-p/4636401#M1091608</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;My requirement is to read the log of SM35.For exmpla ecustomer creation after running the session I should &lt;/P&gt;&lt;P&gt;read log and store for which legacy numbers SAP customer is created and for which its failed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As specified in one of the logs &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Get your TEMSEID MANDANT from APQL table, and call these four function modules in sequence.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: CHARCP LIKE RSTSTYPE-CHARCO VALUE '0000'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'RSTS_GET_ATTRIBUTES'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      AUTHORITY           = ' '&lt;/P&gt;&lt;P&gt;      CLIENT              = APQL-MANDANT&lt;/P&gt;&lt;P&gt;      NAME                = APQL-TEMSEID&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      CHARCO              = CHARCP&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      FB_ERROR            = 1&lt;/P&gt;&lt;P&gt;      FB_RSTS_OTHER       = 2&lt;/P&gt;&lt;P&gt;      NO_OBJECT           = 3&lt;/P&gt;&lt;P&gt;      NO_PERMISSION       = 4&lt;/P&gt;&lt;P&gt;      OTHERS              = 5.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'RSTS_OPEN_RLC'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      NAME         = APQL-TEMSEID&lt;/P&gt;&lt;P&gt;      CLIENT       = APQL-MANDANT&lt;/P&gt;&lt;P&gt;      AUTHORITY    = 'BATCH'&lt;/P&gt;&lt;P&gt;      PROM         = 'I'&lt;/P&gt;&lt;P&gt;      RECTYP       = 'VNL----'&lt;/P&gt;&lt;P&gt;      CHARCO       = CHARCP&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      FB_CALL_HANDLE =  4&lt;/P&gt;&lt;P&gt;      FB_ERROR       =  8&lt;/P&gt;&lt;P&gt;      FB_RSTS_NOCONV = 12&lt;/P&gt;&lt;P&gt;      FB_RSTS_OTHER  = 16&lt;/P&gt;&lt;P&gt;      NO_OBJECT      = 20&lt;/P&gt;&lt;P&gt;      OTHERS         = 24.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;gt; 0.&lt;/P&gt;&lt;P&gt;     EXIT.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'RSTS_READ'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      DATATAB  = LOG_TABLE&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      FB_CALL_HANDLE =  4&lt;/P&gt;&lt;P&gt;      FB_ERROR       =  8&lt;/P&gt;&lt;P&gt;      FB_RSTS_NOCONV = 12&lt;/P&gt;&lt;P&gt;      FB_RSTS_OTHER  = 16&lt;/P&gt;&lt;P&gt;      OTHERS         = 16.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;gt; 0.&lt;/P&gt;&lt;P&gt;     EXIT.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'RSTS_CLOSE'&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      OTHERS = 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOG_TABLE will contain the log you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOG_TABLE is having only &lt;/P&gt;&lt;P&gt;     ENTERDATE LIKE BTCTLE-ENTERDATE,&lt;/P&gt;&lt;P&gt;     ENTERTIME LIKE BTCTLE-ENTERTIME,&lt;/P&gt;&lt;P&gt;     LOGMESSAGE(400) TYPE C,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In t´he log message I am not getting the exact message displayed in SM35 log and also I need index number of the record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2008 17:57:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sm35-session-log/m-p/4636401#M1091608</guid>
      <dc:creator>sreenivasa_reddy1</dc:creator>
      <dc:date>2008-10-27T17:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: SM35 Session Log</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm35-session-log/m-p/4636402#M1091609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;bdc-log is incomplete.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;customer no. is only displayed by creations and not by changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;better use:  call transaction 'XD01' ...messages into mtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Oct 2008 11:58:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sm35-session-log/m-p/4636402#M1091609</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2008-10-28T11:58:16Z</dc:date>
    </item>
    <item>
      <title>Re: SM35 Session Log</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm35-session-log/m-p/4636403#M1091610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First of all i dont suppose that you can get the complete details of the queue id in this manner . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There has to be robust code in order to achieve this . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because the queue id is not at all touched through this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u confirm from seeing into the queue dump and check if the data u r creating is present there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Queue dump analysis and check on the fields where customer is getting created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vijay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Oct 2008 12:09:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sm35-session-log/m-p/4636403#M1091610</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-28T12:09:10Z</dc:date>
    </item>
  </channel>
</rss>

