Document changes history table

Hi,
Is there any table which is having document changes history (Old and new).
Thanks in advance for your help.

Hi,
If you succeed to see the changes via FB03 transactions and cannot view them in the tables, then your selection parameters are incorrect. To see the right parameters, you can activate the trace (via ST05) and view changes via FB03 for one document. Then, by checking the trace you will see what you enter wrong when you select data from the table.
Alternatively, use S_ALR_87012293 report for mass view of changed documents.
Regards,
Eli

Similar Messages

  • Change History Table in CRM

    Hello All,
    Please let me know the transaction change history table in CRM.
    Kindly help.
    Regards
    DJ

    Hi,
      Tables for change document history are
    CDHDR
    CDPOS_STR
    CDPOS_UID
    Regards
    Srinu

  • Billing Document Change history

    Hi,
    Is there any t code or programme availiable for the view of billing document change history.
    suresh

    Dear Suresh,
    Through VF02 transaction itself you can find the changes involved in the billing document.
    Go to VF02 transaction enter billing document number to which you want to check the changes then go Menu>Environment>Click on changes now system will take you the Display changes screen here you give the options then execute.
    I hope this will help you,
    Regards,
    Murali.

  • Sales order changes history table

    hi.........
    i wann field for user name from sales order change history table. i hv tried CDHDR and CDPOS, but i cound't get the exact link in those tables.
    will u tel me any other table, so that i can get this field by passing sales order ?

    Hi subharao,
    Go though this program.
    REPORT zmm_rep_poh NO STANDARD PAGE HEADING LINE-SIZE 250 LINE-COUNT 65.
    TABLES: cdhdr,cdpos,ekko,ekpo.
    TYPE-POOLS : slis.
    DATA       : t_fieldalv     TYPE slis_t_fieldcat_alv.
    DATA       : import_variant LIKE disvariant.
    DATA       : xrepid         LIKE sy-repid.
    DATA       : layout         TYPE slis_layout_alv.
    DATA: BEGIN OF itab OCCURS 0,
            fname(40) ,
            objectid(10),
            changenr(10) ,
            value_new(10),
            value_old(10),
            unit_old(10),
            unit_new(10),
            cuky_old(10),
            cuky_new(10),
            key(5),
            username(10),
            udate LIKE cdhdr-udate,
            utime LIKE cdhdr-utime,
          END OF itab.
    DATA iebeln(15).
    DATA: BEGIN OF itab1 OCCURS 0,
            username(10),
            udate LIKE cdhdr-udate,
            changenr(10),
            utime LIKE cdhdr-utime,
          END OF itab1.
    DATA: BEGIN OF itab3 OCCURS 0.
            INCLUDE STRUCTURE itab.
    DATA: END OF itab3.
    DATA iekko LIKE ekko OCCURS 0 WITH HEADER LINE.
    *Select Option
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS : s_ebeln FOR ekpo-ebeln OBLIGATORY,
                     s_ekorg FOR ekko-ekorg NO INTERVALS DEFAULT '77IN',
                     s_bukrs FOR ekko-bukrs NO INTERVALS DEFAULT '77IN'.
    SELECTION-SCREEN END OF BLOCK b1.
    *INITIALIZATION.
    for alv field catalog definition.
      PERFORM initial_alv_fieldcat CHANGING t_fieldalv[].
    START-OF-SELECTION.
      SELECT * INTO iekko
      FROM ekko
      WHERE ebeln IN s_ebeln AND ekorg IN s_ekorg AND bukrs IN s_bukrs.
        APPEND iekko.
      ENDSELECT.
      LOOP AT iekko.
        SELECT username udate changenr utime
        INTO   (itab1-username,itab1-udate,
               itab1-changenr,itab1-utime)
        FROM  cdhdr
        WHERE objectid EQ iekko-ebeln.
          APPEND itab1.
        ENDSELECT.
      ENDLOOP.
      LOOP AT itab1.
        SELECT objectid changenr fname value_old value_new unit_old unit_new
               cuky_old cuky_new
        INTO  (itab-objectid, itab-changenr, itab-fname,
              itab-value_old,itab-value_new ,itab-unit_old, itab-unit_new,
              itab-cuky_old,itab-cuky_new)
        FROM  cdpos
        WHERE changenr = itab1-changenr.
          IF sy-subrc = 0.
            itab-username = itab1-username.
            itab-udate    = itab1-udate.
            itab-utime    = itab1-utime.
            APPEND itab.
          ENDIF.
        ENDSELECT.
      ENDLOOP.
    delete itab where fname eq 'KEY'.
      sort itab by fname.
    delete ADJACENT DUPLICATES FROM itab comparing all fields.
      LOOP AT itab.
        IF itab-fname = 'ZTERM'.
           itab-fname = 'Payment Terms'.
          MODIFY itab.
        ELSEIF itab-fname = 'AEDAT'.
               itab-fname = 'Date'.
          MODIFY itab.
        ELSEIF itab-fname = 'EFFWR'.
               itab-fname = 'Effective Value'.
          MODIFY itab.
        ELSEIF itab-fname = 'MENGE'.
               itab-fname = 'PO Quantity'.
          MODIFY itab.
        ELSEIF itab-fname = 'BRTWR'.
               itab-fname = 'Gross Order Value'.
          MODIFY itab.
        ELSEIF itab-fname = 'NETWR'.
               itab-fname = 'Net Order Value'.
          MODIFY itab.
        ELSEIF itab-fname = 'PROCSTAT'.
               itab-fname = 'Purchasing Doc processing state'.
          MODIFY itab.
        ELSEIF itab-fname = 'FRGSX'.
               itab-fname = 'Release Strategy'.
          MODIFY itab.
        ELSEIF itab-fname = 'FRGKE'.
               itab-fname = 'Release Ind. Pur. Doc'.
          MODIFY itab.
        ELSEIF itab-fname = 'ZBD1P'.
               itab-fname = 'Cash Discount Perc 1'.
          MODIFY itab.
        ELSEIF itab-fname = 'ZBD1T'.
               itab-fname = 'Cash Discount Days'.
          MODIFY itab.
        ELSEIF itab-fname = 'ZBD2T'.
               itab-fname = 'Cash Discount Days'.
          MODIFY itab.
              ELSEIF itab-fname = 'KEY'.
               itab-fname = 'Item Entered'.
          MODIFY itab.
        ENDIF.
      ENDLOOP.
      PERFORM alv_grid_display.
    *&      Form  alv_grid_display
          text
    -->  p1        text
    <--  p2        text
    FORM alv_grid_display .
      DATA  : gt_event  TYPE slis_t_event.
      DATA  : dbcnt TYPE i.
      DATA  : dbcntr(10) TYPE c.
      DATA  : title(100) TYPE c.
      CLEAR : dbcnt,dbcntr,title.
      DESCRIBE TABLE itab LINES dbcnt.
      dbcntr = dbcnt.
      CONCATENATE 'NO.OF ENTRIES : ' dbcntr INTO title SEPARATED BY space.
      sy-title = title.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program = sy-repid
          is_layout          = layout
          it_fieldcat        = t_fieldalv[]
          i_save             = 'A'
          i_grid_title       = 'Purchase Order Amendment Details'
        TABLES
          t_outtab           = itab
        EXCEPTIONS
          program_error      = 1
          OTHERS             = 2.
    ENDFORM.                    " alv_grid_display
    *&      Form  initial_alv_fieldcat
          text
         <--RT_FIELDCAT  text
    FORM initial_alv_fieldcat  CHANGING rt_fieldcat TYPE slis_t_fieldcat_alv.
      DATA       : ls_fieldcat TYPE slis_fieldcat_alv .
      DATA       : cntr TYPE i VALUE 1.
      CLEAR ls_fieldcat.
      cntr = cntr + 1.
      ls_fieldcat-col_pos   = 1.
      ls_fieldcat-fieldname = 'USERNAME'.
      ls_fieldcat-seltext_l = 'UNAME'.
      ls_fieldcat-do_sum    = 'X'.
      APPEND ls_fieldcat TO rt_fieldcat.
      CLEAR ls_fieldcat.
      cntr = cntr + 1.
      ls_fieldcat-col_pos   = 2.
      ls_fieldcat-fieldname = 'UDATE'.
      ls_fieldcat-seltext_l = 'UDATE'.
      ls_fieldcat-do_sum    = 'X'.
      APPEND ls_fieldcat TO rt_fieldcat.
      CLEAR ls_fieldcat.
      cntr = cntr + 1.
      ls_fieldcat-col_pos   = 3.
      ls_fieldcat-fieldname = 'UTIME'.
      ls_fieldcat-seltext_l = 'UTIME'.
      ls_fieldcat-do_sum    = 'X'.
      APPEND ls_fieldcat TO rt_fieldcat.
      CLEAR ls_fieldcat.
      cntr = cntr + 1.
      ls_fieldcat-col_pos   = 4.
      ls_fieldcat-fieldname = 'OBJECTID'.
      ls_fieldcat-seltext_l = 'PO Number'.
      ls_fieldcat-do_sum    = 'X'.
      APPEND ls_fieldcat TO rt_fieldcat.
      CLEAR ls_fieldcat.
      cntr = cntr + 1.
      ls_fieldcat-col_pos   = 5.
      ls_fieldcat-fieldname = 'FNAME'.
      ls_fieldcat-seltext_l = 'Field Name'.
      ls_fieldcat-do_sum    = 'X'.
      APPEND ls_fieldcat TO rt_fieldcat.
      CLEAR ls_fieldcat.
      cntr = cntr + 1.
      ls_fieldcat-col_pos   = 6.
      ls_fieldcat-fieldname = 'VALUE_OLD'.
      ls_fieldcat-seltext_l = 'Old Value'.
      ls_fieldcat-do_sum    = 'X'.
      APPEND ls_fieldcat TO rt_fieldcat.
      CLEAR ls_fieldcat.
      cntr = cntr + 1.
      ls_fieldcat-col_pos   = 7.
      ls_fieldcat-fieldname = 'VALUE_NEW'.
      ls_fieldcat-seltext_l = 'New Value '.
      ls_fieldcat-do_sum    = 'X'.
      APPEND ls_fieldcat TO rt_fieldcat.
      CLEAR ls_fieldcat.
      cntr = cntr + 1.
      ls_fieldcat-col_pos   = 8.
      ls_fieldcat-fieldname = 'UNIT_OLD'.
      ls_fieldcat-seltext_l = 'Old Unit'.
      ls_fieldcat-do_sum    = 'X'.
      APPEND ls_fieldcat TO rt_fieldcat.
      CLEAR ls_fieldcat.
      cntr = cntr + 1.
      ls_fieldcat-col_pos   = 9.
      ls_fieldcat-fieldname = 'UNIT_NEW'.
      ls_fieldcat-seltext_l = 'New Unit'.
      ls_fieldcat-do_sum    = 'X'.
      APPEND ls_fieldcat TO rt_fieldcat.
      CLEAR ls_fieldcat.
      cntr = cntr + 1.
      ls_fieldcat-col_pos   = 10.
      ls_fieldcat-fieldname = 'CUKY_OLD'.
      ls_fieldcat-seltext_l = 'Old Cuky'.
      ls_fieldcat-do_sum    = 'X'.
      APPEND ls_fieldcat TO rt_fieldcat.
      CLEAR ls_fieldcat.
      cntr = cntr + 1.
      ls_fieldcat-col_pos   = 11.
      ls_fieldcat-fieldname = 'CUKY_NEW'.
      ls_fieldcat-seltext_l = 'New Cuky'.
      ls_fieldcat-do_sum    = 'X'.
      APPEND ls_fieldcat TO rt_fieldcat.
      layout-zebra = 'X'.
      layout-colwidth_optimize = 'X'.
    ENDFORM.                    " initial_alv_fieldcat
    *********Rewards some points.
    Rgds,
    P.Naganjana Reddy

  • Sales order, Delivery and Invoice changes history tables

    Dear All,
    I want to know how to find out the changes done in Sales Order, Delivery and Invoice.
    As far as sales order is concerned, I know CDHDR and CDPOS are tables can be used to find out the changes.
    But I am not sure about the "Object ID". Where we need to find out this Object ID?
    In the Data element "VBELN_VA" "Change Document" option has been checked under "Further Characteristics" tab.
    Please confirm about the "Object ID".
    Similarly give inputs for Delivery and Invoice change history also.
    Regards,
    Mullairaja

    Hi,
    Could you please explain, how to use these programs?
    Regards,
    Mullairaja

  • BAPI: BAPI_SALESORDER_CHANGE - Document Change History

    Hi ,
    When I change a Sales Order usingthe BAPI: BAPI_SALESORDER_CHANGE, will it create the change history for the document?
    Appreciate Your help.
    Thanks,
    Kannan.

    Transaction is SCDO and look at object called VERKBELEG
    Check the below link :
    http://help.sap.com/saphelp_nw04s/helpdata/en/c7/69bccff36611d3a6510000e835363f/content.htm
    Thanks
    Seshu

  • Update the change history for line items in CDHDR/CDPOS

    Hi,
    I have a problem in updating the sales order and line items in CDHDR/CDPOS when there is change in header level custom field..
    Actually i have a custom field in VBAK which added in additional data A in the header level of sales order.When we have change in that field only some line items only updating in the change history tables(CDHDR/CDPOS),but we need to capture all the line items when the custom field in the header level is changed.
    i have added change document flag in the data element of the custom field.
    Please advice me how to get all  the line items will reflect in CDHDR/CDPOS when the header level custom field has change .
    Thanks & Regards
    Kiran

    The purpose of CHANGE DOCUMENT tables is to flag the changes with Old and New values. So when Header data is changed only Header details will be tracked and same for Item tables too.
    If you need anything addtional from this then that would customizing.
    I am not sure what is your requirement but to make it simple and achive requirement add same field with same setting to line item tables VBAP, VBKD.. (as required, if that's doesnt impact your Order. These fields no need to be on screen). While changing your Custom field of Header level change the item level field too. Then CHANGE DOCUMENT will generate automatically for all the line item including header.

  • Change History of Material master classification data

    Dear all.
    How can we see the change history of the Material master classification data.
    Whether any standard report exists which can give this Change History data or whether we can find from  any tables?
    Please let me know your thoughts on this
    Regards
    Shyam

    changes in values for a characteristic can be monitored in CL20N via menu Environment > Change documents
    change history for classification is only stored if you activated this.
    if  it is not set active in your system, then see SAP Note 943559 - FAQ: Frequently asked questions about the classifctn. system
    it has instruction how to active it.

  • Reg : material master change history

    Hi All.
    I am changing the value of the material master characterstic assigned to class under the classification TAB of material master.
    I want to extract the last chaged date of the characterstic value.
    The material master change history ( Table CDHDR)  is not reflecting the changes done to the characterstic value.
    Can anybody please suggest me how can i extract the change history of the characterstic value of a given class for a given material.
    Thanks
    Vijay

    Hi
    If a field is changed in any transaction with a new values those changes are recorded in CDHDR and CDPOS tables with the field name, Transaction name and field old and new values, changed by and date etc
    So you have to fetch the change data history from those tables passing the
    OBJECT CLAS = MATERIAl and the Objectid = Material no and fetch the data from CDHDR first and then for all entries of CDHDR fetch the data from CDPOS and use the data and required fields
    Regards

  • MDG-F 7.0 GL, cost center, profit center change history in ECC

    I am working in an MDG-F 7.0 workshop and am primarily working on cost center, profit center and GL account.
    I have come to realize that all field attribute changes made to cost center and profit center that are initiated from MDG-F won't be updated in ECC change history tables therefore i loose the ability to look up the change history in ECC but in MDG-F.
    However ECC history table is udpated for GL account attribute changes initated from MDG-F.
    Do everyone have the same understanding as I do? Please let me know if you see something else.
    Thanks,
    LUO

    Hi Luo
    It is available on Financial Contolling Goverance cost center under Search sub area.
    Here you have to select respective object and after searching result you can find there is link with aready existing master data objects.
    You can click on the link to open respective object. Here you can edit and change as per your wish

  • Reporting: Table / Tcode for Payment Terms change history in posted documents

    Hi everyone,
    First of all, thanks in advance for your help on this one.
    Please let me know the Table name where we can see the previous Payment Terms and revised payment terms of documents in a specific company code.
    For example: if a document had payment terms 45 and they were modified to 00 or 15.
    Or is there any transaction code to track Payment Terms changes accounting documents? Where I can select company code and build a report based on this field alone, during a specific timeframe (Q1 2014 or Q2 2014.
    Thanks again and best regards,
    Christian.

    Hi Christian,
    You can use standard reports to veiew the changes in doucments e.g.:
    FB04 - Document Changes
    S_ALR_87012293 - Display of Changed Documents
    FB04
    S_ALR_87012293:
    Regards
    Javed

  • History Documents, Change Documents and Potential documents in PGS

    What are History Documents, Cleared documents, Change Documents and Potential documents in PGS.
    I need to retrieve history documents from tables BSIK, VBKPF and RBKP. Which fields are considered as History documents from these tables?
    How to retrieve Cleared documents from Table BSAK? Which fields from this table can be considered as cleared documents.
    How to retrieve Change documents from Table CDPOS? Which fields from this table can be considered as change documents.
    How to retrieve Potential duplicate documents from tables BSIK, VBKPF, RBKP? Which fields from this table can be considered as potential duplicate documents.

    In order to include audio and video, you need to export it into a format that supports this, and you need to have a program to open it that supports audio and video in exactly the way it was included (not all flavors of format have the same features).
    PDF does not do this. I'm not sure about .doc (but I doubt it).
    EPUB does support audio and video, but I have no idea how easy it is to use (nor how reliable).

  • Table that stores sales document changes...

    Hello Experts,
    I need to get changed date and time for a given sales document. For example,
    I need to show to the user the credit release date and time. Presently, I can only
    show the credit release date which can be fetched from VBAK-CMFRE.I need to get also
    the credit release time just like when you display the changes of a given sales
    document via VA02.
    Hope you can help me out here guys. Thank you and take care!

    Table CDHDR - Change document header &
    Table CDPOS - Change document items
    are the tables u need to look for the change history.
    Its regardless of a sales order or a purchase order.....all the changes are stored in this table
    Regards
    Gopi

  • BOM document item change history

    I am trying to find an efficient way to track change history of Bill of Material structure for documents, especially deletions of BOM structure components. I found an SAP table called STAS which contains Bill of Material Number, its component counter number and a deletion indicator, but not the <b>document numbers</b> of the BOM parent document and BOM component document. Is there a database table that contains all this information (BOM #, component counter #, BOM parent document #, BOM component document #, as well as the change date)?

    Not sure ,there may be two reasons 1,He might have deleted accedentally adn lateyer he forgot or his id might using his group team to chage data when his absence.If system noted his user id and time some might have used his id.Check with basis time they might have user entries that time how many times the user id used that time .

  • Change history of Shipment Cost document

    Hi,
    Please let me know hoe to view the changes done in the shipment cost document.
    Thanks in Advance.
    Regards
    Vinu.N

    Hi
    Shipment Change History
    You can use report ROIGCHGD at shipment header level to create a list of all changes that you have made to the shipment.
    Reward if usefull
    Regards
    SE

Maybe you are looking for

  • Install to brand new Hard Drive

    13" MacBook Pro would no longer boot (2010 model). Took into the Apple store and they tell me the hard drive is fried. I bought a new hard drive, replaced it and held 'c' down during boot to load from the install DVD that came with the system when I

  • Opening MS Word docs in Yosemite

    Just purchased a lovely new iMac running Yosemite.   All old files transferred without a hitch.   However none of my Word docs will open.   Message appears "You can't open the application "Microsoft Word" because PowerPC applications are no longer su

  • DropDown List issue in saving user entered custom value to dropdown : WDJ

    Hi Experts, I have a dropdown list that is say prepopulated with 2 values, by clicking "allow custom entry" I can enable the user to type in a value if he doesnt want to choose from existing options. I am trying to add the user entered value to the d

  • Notification Center ... Launch Browser to Visit Facebook?

    When I receive a Facebook Notification, when I click on it, it does not launch Facebook. How do I fix notification so that it will launch my browser? Thanks.

  • Inco terms needs to copi from ship to

    HI, We have a requirement as,when we create a sales order needs to copi incoterms of ship--to party  in to the order not from sold--to .,if we have different  soldto and ship to,How to get this