<?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 ECATT ERROR LOG in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/ecatt-error-log/m-p/2197113#M469057</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am working with with ECATT error log, I want to make error log to appear more user friendly so that end user can understand it well.&lt;/P&gt;&lt;P&gt;so what i want is to capture main error message from error log and want to display in some spread sheet.&lt;/P&gt;&lt;P&gt;My first aim is to capture those messages.&lt;/P&gt;&lt;P&gt;Can any one please help me........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 May 2007 09:44:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-09T09:44:16Z</dc:date>
    <item>
      <title>ECATT ERROR LOG</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ecatt-error-log/m-p/2197113#M469057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am working with with ECATT error log, I want to make error log to appear more user friendly so that end user can understand it well.&lt;/P&gt;&lt;P&gt;so what i want is to capture main error message from error log and want to display in some spread sheet.&lt;/P&gt;&lt;P&gt;My first aim is to capture those messages.&lt;/P&gt;&lt;P&gt;Can any one please help me........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 09:44:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ecatt-error-log/m-p/2197113#M469057</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T09:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: ECATT ERROR LOG</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ecatt-error-log/m-p/2197114#M469058</link>
      <description>&lt;P&gt;goto sm35.&lt;/P&gt;&lt;P&gt;select the session in the appl. toolbar press log.&lt;/P&gt;&lt;P&gt;it will take u to log overview. pressdisplay,u can see all the errors during that session.&lt;/P&gt;&lt;P&gt;check this code to display the error mesgs.&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'MM02' USING IT_BDCDATA MODE 'A' update 'S'&lt;/P&gt;&lt;P&gt;MESSAGES INTO IT_MESSAGES.&lt;/P&gt;&lt;P&gt;CLEAR IT_BDCDATA.&lt;/P&gt;&lt;P&gt;REFRESH IT_BDCDATA.&lt;/P&gt;&lt;P&gt;LEAVE TO LIST-PROCESSING and return to screen 0.&lt;/P&gt;&lt;P&gt;WRITE:/ SY-SUBRC.&lt;/P&gt;&lt;P&gt;PERFORM MESGS.&lt;/P&gt;&lt;P&gt;FORM MESGS .&lt;/P&gt;&lt;P&gt;DATA: V_MSG(100) TYPE C.&lt;/P&gt;&lt;P&gt;LOOP AT IT_MESSAGES.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'FORMAT_MESSAGE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;ID = SY-MSGID&lt;/P&gt;&lt;P&gt;LANG = 'EN'&lt;/P&gt;&lt;P&gt;NO = SY-MSGNO&lt;/P&gt;&lt;P&gt;V1 = SY-MSGV1&lt;/P&gt;&lt;P&gt;V2 = SY-MSGV2&lt;/P&gt;&lt;P&gt;V3 = SY-MSGV3&lt;/P&gt;&lt;P&gt;V4 = SY-MSGV4&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;MSG = V_MSG&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;NOT_FOUND = 1&lt;/P&gt;&lt;P&gt;OTHERS = 2.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;WRITE:/ V_MSG.&lt;/P&gt;&lt;P&gt;clear v_msg.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDFORM. " MESGS&lt;/P&gt;&lt;P&gt;Award points if this is helpful dear,&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;</description>
      <pubDate>Wed, 09 May 2007 09:48:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ecatt-error-log/m-p/2197114#M469058</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T09:48:00Z</dc:date>
    </item>
    <item>
      <title>Re: ECATT ERROR LOG</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ecatt-error-log/m-p/2197115#M469059</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;SAP users use CATT frequently to upload master data or to make changes to master data records. SAP Consultants and Abapers tend to use it for creating test data. The transactions run without user interaction. You can check system messages and test database changes. All tests are logged. The CATT records your keystrokes while performing the actual transaction. You then identify the fields that you wish to change in that view. Then export this data to a spreadsheet to populate with the data required. This is uploaded and executed saving you keying in the data manually.&lt;/P&gt;&lt;P&gt;To perform CATT, it has to be enabled in your production environment (your systems administrator should be able to do this - SCC4). You will also need access to your development system to create the CATT script.&lt;/P&gt;&lt;P&gt;The process of uploading data with a CATT:&lt;/P&gt;&lt;P&gt;Activate CATT in your client&lt;/P&gt;&lt;P&gt;In transaction code SCC4 - click the change button &lt;/P&gt;&lt;P&gt;Double click on the client number &lt;/P&gt;&lt;P&gt;In the Restriction section, tick Allows CATT processes to be started. &lt;/P&gt;&lt;P&gt;Upload data using CATT&lt;/P&gt;&lt;P&gt;1. Create Import variant for the fields you need&lt;/P&gt;&lt;P&gt;Transaction SCAT &lt;/P&gt;&lt;P&gt;Goto Parameters &lt;/P&gt;&lt;P&gt;Create Import Variant &lt;/P&gt;&lt;P&gt;Goto Variant -&amp;gt; Edit &lt;/P&gt;&lt;P&gt;Goto Variant -&amp;gt; Fast entry or F9 &lt;/P&gt;&lt;P&gt;Duplicate 01 &lt;/P&gt;&lt;P&gt;2. To change the MRP Group for a list of Material&lt;/P&gt;&lt;P&gt;Assuming that I want to change the MRP Group for a list of Material.&lt;/P&gt;&lt;P&gt;My text files should look something like this:&lt;/P&gt;&lt;P&gt;[Variant ID] [Variant Text] &amp;amp;ZDISGR &amp;amp;ZMATNR&lt;/P&gt;&lt;P&gt;--&amp;gt; Parameter texts MRP group Material&lt;/P&gt;&lt;P&gt;--&amp;gt; Default Values M1 A001&lt;/P&gt;&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;Changes to the default values displayed above not effective&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;#01 M1 A001&lt;/P&gt;&lt;P&gt;#02 '' A002&lt;/P&gt;&lt;P&gt;#03 M1 A003&lt;/P&gt;&lt;P&gt;Note : '' denotes a blank in the field. e.g. Material A002 MRP group will be replaced by a blank.&lt;/P&gt;&lt;P&gt;3. Configure the recorded entry fields to read from the imported text file data&lt;/P&gt;&lt;P&gt;In the CATT : Maintain functions test case Screen &lt;/P&gt;&lt;P&gt;Double click on the Object Name &lt;/P&gt;&lt;P&gt;Double click on the screen number with your desired fields &lt;/P&gt;&lt;P&gt;Park the cursor on the fields &lt;/P&gt;&lt;P&gt;Click Edit -&amp;gt; Details &lt;/P&gt;&lt;P&gt;Fill in the Parameters Name and Field Contents &lt;/P&gt;&lt;P&gt;Finish Save it. &lt;/P&gt;&lt;P&gt;Assign your text file data. &lt;/P&gt;&lt;P&gt;In the CATT : Execute test case Screen &lt;/P&gt;&lt;P&gt;Click External from file and choose your text file &lt;/P&gt;&lt;P&gt;CATT will now read from your text file and update whatever data you have specified. &lt;/P&gt;&lt;P&gt;u can go through this link&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/advancedsearch?query=catt&amp;amp;cat=sdn_all" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/advancedsearch?query=catt&amp;amp;cat=sdn_all&lt;/A&gt;&lt;/P&gt;&lt;P&gt;[Removed by the moderator.]&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;</description>
      <pubDate>Wed, 09 May 2007 09:49:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ecatt-error-log/m-p/2197115#M469059</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T09:49:46Z</dc:date>
    </item>
    <item>
      <title>Re: ECATT ERROR LOG</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ecatt-error-log/m-p/2197116#M469060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can any one pls tell me that where i can find all all those messages in SAP system so that i can capture them for any use.&lt;/P&gt;&lt;P&gt;"If Not Able To Understand, Reply Me."&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 11:41:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ecatt-error-log/m-p/2197116#M469060</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T11:41:52Z</dc:date>
    </item>
  </channel>
</rss>

