Log for document change details

Hi,
I am able to get the document change date in BKPF. But I am looking for detail log for document change. In which table i can get this.
Thanks

Hi,
check tables CDHDR and CDPOS, maybe you find what you are looking for.
BR Christian

Similar Messages

  • Why system is capturing Log for Document transfer and Compliance check

    Hi All
    Although I have removed
    TD_MAP Movement Data : Document Replication Mapping (Live)
    TD_CCH Movement Data : Compliance check Document (Live)
    in custom document configuration , then also system is capturing log for document transfer and Compliance check result.
    If my understanding is wrong then what is the use of Log control in customs document configuration for
    Document Transfer
    Document Check
    Thanks
    Akhil..

    Hi Akhil,
    For some situations, GTS allows you some control over the logging by specifying the Profile to use.  But if you do not specify a Profile, logging still occurs using the default values in the standard code.
    Regards,
    Dave

  • Joining vbak to cdhdr table for document changes

    Hi Expert
    I am hanging for a week in this project please need some advice
    I want to join vbak table with cdhdr and select
    vbak.vkbur (plant) and want to show that vkbur in the internal table of it_cdhdr
    so as to select only those plant belong to vkbur so how can I join base on the below coding................
    REPORT ZCHGDOC
    NO STANDARD PAGE HEADING LINE-SIZE 120.
    WRITE: sy-title, 40 'Page', sy-pagno.
    ULINE.
    TABLES: CDHDR,
             CDPOS,
             t001w,
             "VKBUR,
             "VBELN,
             VBAK,
             VBAP.
    SELECTION-SCREEN BEGIN OF BLOCK DOCUMENT WITH FRAME TITLE TEXT-701.
    SELECTION-SCREEN END OF BLOCK DOCUMENT.
    SELECT-OPTIONS:
                     V1 FOR VBAK-VKBUR,
                     S_WERKS for T001W-werks,
                     objectid for  cdhdr-objectid,
                     udate for cdhdr-udate.
    PARAMETER: USERNAME LIKE CDHDR-USERNAME.
    DATA: BEGIN OF IT_VBAP OCCURS 0,
             OBJECTCLAS LIKE CDHDR-OBJECTCLAS,
             OBJECTID LIKE CDHDR-OBJECTID,
             VBELN LIKE VBAP-VBELN,
              END OF IT_VBAP.
    DATA: BEGIN OF IT_CDHDR OCCURS 0,
             OBJECTCLAS LIKE CDHDR-OBJECTCLAS,
             OBJECTID LIKE CDHDR-OBJECTID,
             CHANGENR LIKE CDHDR-CHANGENR,
             USERNAME LIKE CDHDR-USERNAME,
             UDATE LIKE CDHDR-UDATE,
             UTIME LIKE CDHDR-UTIME,
             FNAME LIKE CDPOS-FNAME,
             TABNAME LIKE CDPOS-TABNAME,
             TABKEY LIKE CDPOS-TABKEY,
             VALUE_NEW LIKE CDPOS-VALUE_NEW,
             VALUE_OLD LIKE CDPOS-VALUE_OLD,
    END OF IT_CDHDR.
    DATA: WA LIKE LINE OF IT_CDHDR.
    DATA: WA LIKE LINE OF IT_CDPOS.
    DATA: BEGIN OF IT_CDPOS OCCURS 0,
             OBJECTCLAS LIKE CDHDR-OBJECTCLAS,
             OBJECTID LIKE CDHDR-OBJECTID,
             CHANGENR LIKE CDHDR-CHANGENR,
             TABNAME LIKE CDPOS-TABNAME,
             TABKEY LIKE CDPOS-TABKEY,
             FNAME LIKE CDPOS-FNAME,
             VALUE_NEW LIKE CDPOS-VALUE_NEW,
             VALUE_OLD LIKE CDPOS-VALUE_OLD,
    END OF IT_CDPOS.
    Move-corresponding it_cdhdr to wa.
    Move-corresponding it_cdpos to wa.
    SELECT OBJECTCLAS
            OBJECTID
            CHANGENR
            USERNAME
            UDATE
            UTIME FROM CDHDR
            INTO CORRESPONDING FIELDS OF TABLE IT_CDHDR
    WHERE OBJECTCLAS = 'VERKBELEG' or
          objectclas = 'BETRIEB'
          ORDER BY UDATE.
    WHERE OBJECTCLAS = 'VERKBELEG'
    OR OBJECTCLAS = 'BETRIEB' ORDER BY UDATE.
    Filter data based upon Plant selection criteria.
    IF NOT S_WERKS[] IS INITIAL.
    DELETE IT_CDHDR WHERE NOT OBJECTID IN S_WERKS.
    ENDIF.
    IF IT_CDHDR[] IS NOT INITIAL.
       SELECT OBJECTCLAS
              OBJECTID
              CHANGENR
              VALUE_NEW
              VALUE_OLD
              FNAME
              TABNAME
              TABKEY
              FROM CDPOS
              INTO CORRESPONDING FIELDS OF TABLE IT_CDPOS
              FOR ALL ENTRIES IN IT_CDHDR
              WHERE
              OBJECTCLAS = IT_CDHDR-OBJECTCLAS
              AND OBJECTID = IT_CDHDR-OBJECTID
              AND CHANGENR = IT_CDHDR-CHANGENR.
              "or tabname = 'VBAP'.
       SORT IT_CDPOS BY OBJECTCLAS OBJECTID CHANGENR.
    ENDIF.
    Add tables CDPOS DATA TO CDHDR.
    DATA: INDEX TYPE i.
    LOOP AT IT_CDHDR.
       INDEX = SY-TABIX.
       READ TABLE IT_CDPOS WITH KEY OBJECTCLAS = IT_CDHDR-OBJECTCLAS
       OBJECTID = IT_CDHDR-OBJECTID
       CHANGENR = IT_CDHDR-CHANGENR BINARY SEARCH.
       IF SY-SUBRC = 0.
         IT_CDHDR-VALUE_NEW = IT_CDPOS-VALUE_NEW.
         IT_CDHDR-VALUE_OLD = IT_CDPOS-VALUE_OLD.
         MODIFY IT_CDHDR INDEX index TRANSPORTING value_new value_old.
       ENDIF.
       WRITE:/ SY-DATUM,SY-UZEIT,
              50 'DOCUMENT CHANGE REPORT',
             80 'Page', SY-PAGNO,
    "  WRITE: / SY-REPID
              50 'DETAIL REPORT BY PLANT '.
       SKIP.
       ULINE.
    *& T O P - O F - P A G E *
    WRITE:/ 'UDATE:' ,SY-DATUM.
    FORMAT COLOR 4 INTENSIFIED on.
    Write: /35                           ' DOCUMENT CHANGES REPORT '.
       WRITE: /5 'DOCUMENT-NO'.
    20 'TABNAME', 30 'TEXT_CASE', 50 'FNAME'.
       WRITE: /5 'DATE',  20 'FNAME', 45 'CHANGE-NO',65 'OLD-VALUE',80 'NEW-VALUE',95 'USER-NAME'.
       ULINE.
       LOOP AT IT_CDHDR INTO WA.
       on change of wa-objectid.
       Write: / wa-objectid UNDER'DOCUMENT-NO' ."color col_key.
       ENDON.
    ULINE.
         " CDPOS-tabname UNDER'TABNAME', CDPOS-TEXT_CASE UNDER'TEXT_CASE',CDPOS-fname UNDER'FNAME'. "color col_key ,
         write: / wa-udate dd/mm/yyyy under'DATE' NO-GAP,wa-fname under'FNAME' NO-GAP,wa-changenr under 'CHANGE-NO',
         wa-value_old under'OLD-VALUE' LEFT-JUSTIFIED NO-GAP,
         wa-value_new under'NEW-VALUE' LEFT-JUSTIFIED NO-GAP ,wa-username under'USER-NAME' NO-GAP.
    ENDON.
    Move-corresponding it_cdhdr to wa.
    *Write: / wa-objectid UNDER'DOCUMENT-NO' "color col_key.
    *" CDPOS-tabname UNDER'TABNAME', CDPOS-TEXT_CASE UNDER'TEXT_CASE',CDPOS-fname UNDER'FNAME'. "color col_key ,
    *write: / wa-udate dd/mm/yyyy under'DATE' NO-GAP,wa-utime under'TIME' NO-GAP,wa-changenr under 'CHANGE-NO',
    ltrim(wa-value_old) under'OLD-VALUE' NO-GAP,
    *wa-value_new under'NEW-VALUE' NO-GAP ,wa-username under'USER-NAME' NO-GAP.
       ENDLOOP.
    ENDLOOP.

    Hai everybody.
    I am new to this forum. i got a job in abap recently. The below is my requirement.I want solution for this one. Anybody plz help me.
    The change logs were captured in DBTABLOG for table ZWPRFRUND (in transaction ZWPG).
    The only report which is currently used to get the change logs is RSVTPROT
    Now my requirement is,
    we need to display the change logs in the form of ALV.
    We should divert the changes to CDHDR table instead of DBTABLOG, then we can use the RSSCD100 to display change logs.
    The Important items for the change LOG needed in case of changes to table in “ZWPG” are,DATE ,TIME,USER,FIRST NAME,FILED NAME,OLD VALUE,NEW VALUE
    The above fields need to be displayed in the grid. In the above list “FIELD NAME” denotes any field of the table in the transaction in “ZWPG”
    Thanks & Regards,
    Sujatha.T.

  • Log for Release changes in PO

    Hi All,
    From which table i can get details of approval log for release stratergy in PO.
    My requirement is that i want to know  release changes history in Po From where i can get these details.

    Refer table EKKO or Check audit log using t.code AUT10 for ME29N.

  • Log for Table changes

    Hi Experts,
    Is there any standard table in XI  that maintains the log  if I Changes some enttries in my custom table?
    Thanks
    Sugata B

    Kindly check the list of tables here [https://wiki.sdn.sap.com/wiki/display/XI/XI+Tables]

  • User-Exit for document changes (status)

    Hi!
    I'm looking for an user-exit where I can check if the status of the document has been changed. Therefore I found the exit "EXIT_SAPLCV110_004" with the include "ZXCV110U04" which is triggered when a document (transaction CV02N) is saved. The problem is that there is no structure of the document provided so I cannot check the status of it! The interface if this exit is just
    FUNCTION EXIT_SAPLCV110_004.
    ""Lokale Schnittstelle:
    *" CHANGING
    *" REFERENCE(PFX_OKCODE) TYPE SY-UCOMM
    INCLUDE ZXCV110U04 .
    ENDFUNCTION.
    Is there another exit or how can I check if the status has changed for each document?
    Thanks,
    Konrad

    You can code in EXIT_SAPLCV00_001. Write your code in the program  ZXCV001U01. This has DRAW structure valeus and also DRAZ Item details.
    FUNCTION EXIT_SAPLCV00_001.
    ""Lokale Schnittstelle:
    *"       IMPORTING
    *"             VALUE(I_DRAW) LIKE  DRAW STRUCTURE  DRAW OPTIONAL
    *"             VALUE(I_OK_CODE) OPTIONAL
    *"             VALUE(SOURCEPATH) LIKE  DRAW-FILEP OPTIONAL
    *"             VALUE(SOURCEFILE) LIKE  DRAW-FILEP OPTIONAL
    *"             VALUE(TARGETPATH) LIKE  DRAW-FILEP OPTIONAL
    *"             VALUE(TARGETFILE) LIKE  DRAW-FILEP OPTIONAL
    *"       TABLES
    *"              I_INTDRAZ1 STRUCTURE  DRAZ OPTIONAL
    *"              I_INTDRAZ2 STRUCTURE  DRAZ OPTIONAL
    *"       EXCEPTIONS
    *"              ERROR
    INCLUDE ZXCV001U01 .
    ENDFUNCTION.
    Hope this will help you to check the conditions.

  • Audit log for document library

    Hi All,
    I have a requirement to generate a report for a document library which contains confidential “Policies”
     documents, this library exist under sub site. Now my clients wants a log report, which should give information like Who accessed/download/modified document?
    Please guide me
    MercuryMan

    You need to first enable menu audit log reports SharePoint 2010. Please follow the given below steps.
    1. Site Action > site settings
    2. Site collection features
    3.Click on the reporting  features
    4.Search for the Reporting feature 
    4.Click on Activate button
    Otherwise, you could try automate solution named Lepide Auditor for SharePoint (http://www.lepide.com/lepideauditor/sharepoint.html) which assists to generate  report and and provides the
    auditing data into real time. It gets real time alerts on detecting changes to users, groups, lists, libraries, folder and permission etc.
    Lepide - Simplifying IT Management

  • Has maximum size for documents changed in CS4

    In InDesign CS2 and CS3 maximum file size is 5486 mm.
    Can anyone tell me if it has changed in CS4?

    I am in the middle of a job with quite large jobs between 10 - 16 metres.
    As we just ordered CS4 I wondered if it would be easier using CS4.
    But no ... Thank you for testing.

  • Table for "documents change" with statuses

    Hi,
    I need a table where all the status changes for a service order (ticket) are stored (with dates).
    I know of CDHDR table, but there are no entries for statuses?
    Any idea?
    Thank you,
    Borut

    Thanks!
    I think this table will do the job.
    Kind regards,
    Borut

  • Is there any change log for query change in BIW?

    Hi Buddies,
    Could you please tell me if there is a change log in BIW to record all changes made to query and workbook? Since yesterday, I found a very important query had been deleted from our BI system, but I did not who had done this.
    Thanks in advanced.
    best regards
    Patrick

    Unfortunately there isn't. Check if you have the query in another system (test, development) and transport it again. You could also check if there is still an entry in RSRREPDIR but I don't think so.
    Best regards
    Dirk

  • Sync failed: WSUS update source not found on site 786. Please refer to WCM.log for configuration error details.

    Hi,
    I have installed SC 2012 SP1 + SQL Server 2012 CU2e
    I followed the following guide:
    http://www.windows-noob.com/forums/index.php?/topic/4427-using-sccm-2012-rc-in-a-lab-part-2-add-sup-and-wds/
    And when Sync Failed, what could be went wrong?
    I have copied the logs+screenshot, and would be thankful if someone can give expert advise.
    Here is link :  http://sdrv.ms/13kmHBQ
    N.A.Malik

    Hi,
    I haven't tested myself but going to test the following:
    WSUS is bit cranky for now but here is what I did to fix it:
    1) Uninstall SUP role
    2. Uninstall WSUS
    4. Delete SUSDB from SQL Server if any
    5. Restart Server
    6. Install WSUS (Chose to install DB not WID)
    7. Configured Updates to be stored locally
    8. Run Post Deployment Configuration from Server manager
    9. Started WSUS Admin Console and ran Wizard (also chose to connect for the catalog sync) up to the Point where you select the products. Here I canceled the wizard without choosing any products
    10. Install SUP role in SCCM and configure the right Settings (WSUS on Server 2012 Defaults to its own admin Website and ports 8530 and 8531) and select the products you required.
    11. Check following log file if WSUS does not sync with SCCM.
    Path: C:\Program Files\Microsoft Configuration Manager\Logs
    File Name:
    WCM.log
    wsyncmgr.log
    12.) Starts synchronization in the sccm console
    Source:
    http://robiulislam.wordpress.com/2013/04/12/sccm-2012-installation/
    N.A.Malik

  • PMS Logging Appraisal document changes

    Hi Experts,
    We are letting both manager and manager's manager to change the final rating. One of our requirement is to log the changes made in final rating column so that when we can track who had changed the rating and what was the previous rating.
    Is this by default possible or we need to enable logging at template configuration level?
    Appreciate your help.
    Thanks
    Karthik

    Hi,
    As we have selected speical and detaild option, used SLG1 transaction to check the log it only shows the changed by and date , i want to see the objectives entered and changed as well.
    Is there a way to check this.
    Thanks
    Kumar

  • Change documents (Log) for TRs & TOs

    Dear Experts,
    Our requirement is to have change log for tracking changes related to TRs & TOs.
    Please let me know how can I achieve this.
    Thanks in advance.

    As per my best knowledge there's no change document for transfer orders (WMS) in standard system.
    CDHDR and CDHPOS are data tables as it was clearly said - but in this case you cannot use them.

  • Change logs for material master are cut

    Hi,
    I am having a problem with material master logs. I am not able to get the complete logs for the changes made on a partcular material.  It is displaying the change log from today to 2006 but i want to check till 2001. As of now it is cutting it till 2006.
    Where as in the quality system i am able to see the complete log but not in our production system.
    The way to view material master changes is display any material and go to Enivornment menu and select display changes.
    Regards,
    Chitrasen

    It is possible to archive change documents independent of the objects they belong to.
    Usually you would archive a material master and at the same time all change logs get archived too with object MM_MATNR
    But as already said. It is possible to archive change logs independtly with object CHANGEDOCU
    so execute SARA, enter CHANGEDOCU and click the administration button. If you see archives that were recently created, then you can be sure that your logs got archved.

  • Log for changes done before posting LIV in Tcode MIRO

    Hi
    By default data will be fetched from PO/GR for LIV however our users are changing few details such as payment terms, tax code, vendor code, vendor invoice amount etc., before posting LIV in tcode MIRO. We don't have any log for these changes done by our users.
    We want to know what are fields which have been changed by our users at the time of doing LIV (i.e. before posting LIV).
    Can any one help us in this regard.
    Regards
    P Karthikeyan

    If you know those fields, you can find the differences for those field in table EKKO and EKPO for PO, the similar value will be available for IR in table RBKP and RSEG.
    Like as payment term, The payment term is saved in table RBKP - ZTERM for MIRO.
    The same will be available in table EKKO - ZTERM for PO.
    If the value for both fields are same, then user has not changed the field at the time of MIRO.
    If the value mismatched, then user has changes the value in MIRO.
    In this way, you can find the differences for other fields.

Maybe you are looking for