<?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 message in SLG1 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-in-slg1/m-p/7347418#M1540234</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Can anyone suggest exactly which field of which table holds the error message text of SLG1&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 Oct 2010 10:21:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-10-15T10:21:18Z</dc:date>
    <item>
      <title>Error message in SLG1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-in-slg1/m-p/7347414#M1540230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can anyone suggest from which table do we get the error message text for error logs in SLG1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Oct 2010 09:04:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-in-slg1/m-p/7347414#M1540230</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-15T09:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: Error message in SLG1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-in-slg1/m-p/7347415#M1540231</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;Tables: BALHDR is the main (header table), and BALM contains all of the detailed messages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link also. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://abap4.tripod.com/Using_Application_Logging.html" target="test_blank"&gt;http://abap4.tripod.com/Using_Application_Logging.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Oct 2010 09:12:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-in-slg1/m-p/7347415#M1540231</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-15T09:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: Error message in SLG1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-in-slg1/m-p/7347416#M1540232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use these tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BALHDR&lt;/P&gt;&lt;P&gt;BALHDRP&lt;/P&gt;&lt;P&gt;BALM&lt;/P&gt;&lt;P&gt;BALMP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Oct 2010 09:13:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-in-slg1/m-p/7347416#M1540232</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2010-10-15T09:13:52Z</dc:date>
    </item>
    <item>
      <title>Re: Error message in SLG1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-in-slg1/m-p/7347417#M1540233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT * FROM balhdr CLIENT SPECIFIED
             INTO TABLE e_t_log_header
             WHERE mandant      =  i_client
               AND log_handle   IN i_s_log_filter-log_handle
               AND lognumber    IN i_s_log_filter-lognumber
               AND extnumber    IN i_s_log_filter-extnumber
               AND object       IN i_s_log_filter-object
               AND subobject    IN i_s_log_filter-subobject
               AND aldate       IN i_s_log_filter-aldate
               AND altime       IN i_s_log_filter-altime
               AND alprog       IN i_s_log_filter-alprog
               AND altcode      IN i_s_log_filter-altcode
               AND aluser       IN i_s_log_filter-aluser
               AND almode       IN i_s_log_filter-almode
               AND probclass    IN i_s_log_filter-probclass
               AND
        ( aldate = l_s_dttm-date_from AND altime &amp;gt;= l_s_dttm-time_from
                                      AND altime &amp;lt;= l_s_dttm-time_to ).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;   &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT * FROM baldat CLIENT SPECIFIED
                    INTO TABLE l_t_baldat
                    FOR ALL ENTRIES IN l_t_balhdr_current
                    WHERE mandant    = l_t_balhdr_current-mandant
                      AND relid      = 'AL'
                      AND log_handle = l_t_balhdr_current-log_handle.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This is where the query is occured for fetching logs...&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;S.Janagar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Oct 2010 09:17:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-in-slg1/m-p/7347417#M1540233</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-15T09:17:48Z</dc:date>
    </item>
    <item>
      <title>Re: Error message in SLG1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-in-slg1/m-p/7347418#M1540234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Can anyone suggest exactly which field of which table holds the error message text of SLG1&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Oct 2010 10:21:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-in-slg1/m-p/7347418#M1540234</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-15T10:21:18Z</dc:date>
    </item>
  </channel>
</rss>

