<?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: Change log table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-log-table/m-p/1352839#M176552</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Instead of calling TWO Fm,&lt;/P&gt;&lt;P&gt;   we can also do in &lt;/P&gt;&lt;P&gt;   JUST ONE SINGLE FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. For Material,&lt;/P&gt;&lt;P&gt;   just copy paste in new program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Then see the internal table CDRED,&lt;/P&gt;&lt;P&gt;   in debugging,&lt;/P&gt;&lt;P&gt;   it will contain some records. &lt;/P&gt;&lt;P&gt;   (after the FM call)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. &lt;/P&gt;&lt;P&gt;report abc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : obj type  CDOBJECTCL_RANGE_TAB.&lt;/P&gt;&lt;P&gt;data : objWA type LINE OF  CDOBJECTCL_RANGE_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : CDRED like table of CDRED with header line.&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;objWA-SIGN = 'I'.&lt;/P&gt;&lt;P&gt;OBJWA-OPTION = 'EQ'.&lt;/P&gt;&lt;P&gt;objWA-LOW = 'MATERIAL'.&lt;/P&gt;&lt;P&gt;APPEND OBJWA TO OBJ.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CHANGEDOCUMENT_READ_RANGES'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ARCHIVE_HANDLE                   = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CHANGENUMBER_TAB                 =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   DATE_OF_CHANGE                   = '20060601'&lt;/P&gt;&lt;P&gt;    OBJECTCLASS_TAB                  = obj&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OBJECTID_TAB                     =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TABLEKEY_TAB                     =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TABLENAME_TAB                    =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TIME_OF_CHANGE                   = '000000'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  USERNAME_TAB                     =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  LOCAL_TIME                       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TABLEKEY254_TAB                  =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  KEYGUID_TAB                      =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DATE_UNTIL                       = '99991231'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TIME_UNTIL                       = '235959'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    EDITPOS                          = CDRED&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_POSITION_FOUND                = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WRONG_ACCESS_TO_ARCHIVE          = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TIME_ZONE_CONVERSION_ERROR       = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                           = 4&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;BREAK-POINT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. You can change   DATE_OF_CHANGE&lt;/P&gt;&lt;P&gt;   as per your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   You can also change the document&lt;/P&gt;&lt;P&gt;   type to VERKBELEG (instead of MATERIAL)&lt;/P&gt;&lt;P&gt;&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Jun 2006 06:49:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-12T06:49:57Z</dc:date>
    <item>
      <title>Change log table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-log-table/m-p/1352834#M176547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CDHDR and CDPOS are the tables which are used to log the changes which are happeneing, for eg it stored the transaction code, user, objectid, object name, description of the changes which has happened.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i made a change to a sales order, and the information gets stored in these tables, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How long will these information be available. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u retreive changes which were done 2 years ago?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where are these tables stored, on what server? what kind of table it is and whats the mechanism in which data gets stored into these tables?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as far as i have tried out it works for sales orders. i mean it works if i change a sales order and then if i look into the entries of the tables cdhdr and cdpos, they have information about the changes which i have made. but i guess, the Gurus who are working in systems which have 2 or 3 yr old data can tell me if these tables will hold two years old data etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;awaiting reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sriram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jun 2006 06:00:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-log-table/m-p/1352834#M176547</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-12T06:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: Change log table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-log-table/m-p/1352835#M176548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sriram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"CHANGE DOCUMENTS" in SAP Terminology&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1 The same thing which u are asking&lt;/P&gt;&lt;P&gt;we had developed here. For Eg : Any change&lt;/P&gt;&lt;P&gt;in the material master will be detected&lt;/P&gt;&lt;P&gt;and a mail will be sent to the concerned&lt;/P&gt;&lt;P&gt;employee.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THIS WILL ALSO DETECT WHICH FILEDS HAVE CHANGED.&lt;/P&gt;&lt;P&gt;IT CAN ALSO GIVE, The Old Value, And The New Value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. This Mechanism is called CHANGE DOCUMENTS in &lt;/P&gt;&lt;P&gt;SAP Terminology&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. 2 Fuction Modules are Required.&lt;/P&gt;&lt;P&gt;(They will fetch necessary data from CDHDR,CDPOS)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHANGEDOCUMENT_READ_HEADERS&lt;/P&gt;&lt;P&gt;CHANGEDOCUMENT_READ_POSITIONS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. The First FM gives list of all &lt;/P&gt;&lt;P&gt;records ( with change no) which have changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. Loop at the above and the second FM will&lt;/P&gt;&lt;P&gt;provide the details (old-val, new-val) for&lt;/P&gt;&lt;P&gt;each record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. While using 1st Fm, i used docclass as 'MATERIAL'.&lt;/P&gt;&lt;P&gt;BCOS&lt;/P&gt;&lt;P&gt;the concept of change documents is applicable&lt;/P&gt;&lt;P&gt;to other type of documents also (depends upon&lt;/P&gt;&lt;P&gt;customization)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jun 2006 06:02:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-log-table/m-p/1352835#M176548</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-12T06:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: Change log table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-log-table/m-p/1352836#M176549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i will try this out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;information was useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it would be nice if amit copuld share the sequential and logical approach to the object. change of material and sending it to email &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks a lot amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sriram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jun 2006 06:16:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-log-table/m-p/1352836#M176549</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-12T06:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: Change log table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-log-table/m-p/1352837#M176550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. In your case there would be se38 &lt;/P&gt;&lt;P&gt;   program to detect the sales order change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. VERKBELEG this is the name of the change document,&lt;/P&gt;&lt;P&gt;   which u would pass in the first FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. There will also be a date parameter, in the FM,&lt;/P&gt;&lt;P&gt;   which will specify,&lt;/P&gt;&lt;P&gt;   WHICH DATE ONWARDS, the change documents are required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jun 2006 06:24:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-log-table/m-p/1352837#M176550</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-12T06:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: Change log table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-log-table/m-p/1352838#M176551</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; You can check the program RSVTPROT - Evaluation of Change logs.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; To add to What Amit has mentioned you can use the FM similar to this mentioned below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;    LOOP AT SO_VBELN.
      REFRESH ITAB_CDHDR.
      DATE_FROM = S_CHADT-LOW.
      DATE_UNTIL = S_CHADT-HIGH.
      CALL FUNCTION 'CHANGEDOCUMENT_READ_HEADERS'
        EXPORTING
          DATE_OF_CHANGE             = DATE_FROM
          OBJECTCLASS                = 'VERKBELEG'
          OBJECTID                   = SO_VBELN-VBELN
          TIME_OF_CHANGE             = TIME_UNTIL
          DATE_UNTIL                 = DATE_UNTIL
          USERNAME                   = ' '
        TABLES
          I_CDHDR                    = ITAB_CDHDR
        EXCEPTIONS
          NO_POSITION_FOUND          = 1
          WRONG_ACCESS_TO_ARCHIVE    = 2
          TIME_ZONE_CONVERSION_ERROR = 3
          OTHERS                     = 4.
      IF SY-SUBRC NE 0.
        CONTINUE.
      ENDIF.
      LOOP AT ITAB_CDHDR WHERE USERNAME IN S_CHABY.
        REFRESH IT_CDSHW.
        CALL FUNCTION 'CHANGEDOCUMENT_READ_POSITIONS'
          EXPORTING
            CHANGENUMBER            = ITAB_CDHDR-CHANGENR
          TABLES
            EDITPOS                 = IT_CDSHW
          EXCEPTIONS
            NO_POSITION_FOUND       = 1
            WRONG_ACCESS_TO_ARCHIVE = 2
            OTHERS                  = 3.
        IF SY-SUBRC EQ 0.
          PERFORM GET_ACTION .
        ENDIF.
      ENDLOOP.
    ENDLOOP.
  ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Cheers&lt;/P&gt;&lt;P&gt; VJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jun 2006 06:30:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-log-table/m-p/1352838#M176551</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-12T06:30:09Z</dc:date>
    </item>
    <item>
      <title>Re: Change log table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-log-table/m-p/1352839#M176552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Instead of calling TWO Fm,&lt;/P&gt;&lt;P&gt;   we can also do in &lt;/P&gt;&lt;P&gt;   JUST ONE SINGLE FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. For Material,&lt;/P&gt;&lt;P&gt;   just copy paste in new program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Then see the internal table CDRED,&lt;/P&gt;&lt;P&gt;   in debugging,&lt;/P&gt;&lt;P&gt;   it will contain some records. &lt;/P&gt;&lt;P&gt;   (after the FM call)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. &lt;/P&gt;&lt;P&gt;report abc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : obj type  CDOBJECTCL_RANGE_TAB.&lt;/P&gt;&lt;P&gt;data : objWA type LINE OF  CDOBJECTCL_RANGE_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : CDRED like table of CDRED with header line.&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;objWA-SIGN = 'I'.&lt;/P&gt;&lt;P&gt;OBJWA-OPTION = 'EQ'.&lt;/P&gt;&lt;P&gt;objWA-LOW = 'MATERIAL'.&lt;/P&gt;&lt;P&gt;APPEND OBJWA TO OBJ.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CHANGEDOCUMENT_READ_RANGES'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ARCHIVE_HANDLE                   = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CHANGENUMBER_TAB                 =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   DATE_OF_CHANGE                   = '20060601'&lt;/P&gt;&lt;P&gt;    OBJECTCLASS_TAB                  = obj&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OBJECTID_TAB                     =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TABLEKEY_TAB                     =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TABLENAME_TAB                    =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TIME_OF_CHANGE                   = '000000'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  USERNAME_TAB                     =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  LOCAL_TIME                       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TABLEKEY254_TAB                  =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  KEYGUID_TAB                      =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DATE_UNTIL                       = '99991231'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TIME_UNTIL                       = '235959'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    EDITPOS                          = CDRED&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_POSITION_FOUND                = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WRONG_ACCESS_TO_ARCHIVE          = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TIME_ZONE_CONVERSION_ERROR       = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                           = 4&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;BREAK-POINT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. You can change   DATE_OF_CHANGE&lt;/P&gt;&lt;P&gt;   as per your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   You can also change the document&lt;/P&gt;&lt;P&gt;   type to VERKBELEG (instead of MATERIAL)&lt;/P&gt;&lt;P&gt;&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jun 2006 06:49:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-log-table/m-p/1352839#M176552</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-12T06:49:57Z</dc:date>
    </item>
  </channel>
</rss>

