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.

Similar Messages

  • Change document log for Infotype 0033 Statistics

    Dear experts,
    I must log IT0033 Statistics as we do for other infotypes using report RPUAUD00. As only subtype is filled log doesn't show changes for it.
    Could you help me with that? I've tried with SCU3 but as PA0033 in marked as not logged it doesn't work also.
    Thanks in advance and have a nice day,

    Please check if configuration is maintained in the below SPRO path:
    IMG->Personnel Management->Personnel Administration->Tools->Revision->Set up change document
    If infotype is not maintained, try maintaining it for :
    HR documents: Infotypes to be logged  - Tr Class - 'A', Infotype - '0033'
    HR documents: Field group definition    - Field group - '01', Field name - '*'
    Now re-run the report RPUAUD00 after making changes to IT033 record.

  • Change documents log for Header texts of Sales order

    Hi ,
    Does any body came across seeing the changes in the texts in the change logs in the sales order ?
    Can anyone of you provide me the way to activate the change logs for the long texts
    Regards,
    Ajai.

    Kapil,
    Before my current project I was with the same opinion. But at my current client I saw the header texts being logged for the purchase order. I.e if we change the header texts for the PO, we can see the changes in the change log history of the PO.  Thats where I got trouble into.  The business shows the PO history and expecting the same in SO too.  I was unable to figure out how the PO header texts changes were being logged.
                Coming to performance, the clients volume of orders is not too high.
    Lets see any of our SDN friends come up with some hints..
    Regards,
    Ajai.

  • Change document log not created for customer in Batch input/BDC

    Hi Guys,
    Change document log is created when you manually change the customer using XD02 but when run the Batch/BDC the values are Changed but the change document is not created.
    Please someone can give me some hints?
    Luca.

    Any update guys????
    Regards,
    guru singh

  • Error in multiple operation with change document object for custom table

    hi all,
    I have developed a change document object for a custom table ZTEST and developed a report program for insertion, updation & deletion..everything works fine if I do only once ie. if I created only 1 entries. If I created 2 new entries , I am getting an Error "DUPREC:POS&Z3RL_TAB&Z3RL_TAB" and EXIT the transaction.
    why I am getting this error??? is it not possible to do multiple operation with the change document???
    kindly help.
    Edited by: JaiKarthik on Apr 7, 2010 6:20 AM

       LOOP AT ts_mod INTO wa_mod.
                READ TABLE <i_itab> INTO <wa_tab> INDEX wa_mod-row.
    * Select the existing entries in table Z3RL for change history
                    SELECT SINGLE * FROM z3rl
                           INTO wa_z3rl
                           WHERE vkorg   = <wa_tab>+3(4)
                           AND   zzkunnr = <wa_tab>+7(10).
    * Move the old entries
                    IF sy-subrc = 0.
                      CLEAR ls_z3rl.
                      ls_z3rl = wa_z3rl.
                    ENDIF.
    * Update the table
                 MODIFY (viewname) FROM <wa_tab>.
                   CLEAR wa_z3rl.
                    wa_z3rl-mandt      = <wa_tab>+0(3).
                    wa_z3rl-vkorg      = <wa_tab>+3(4).
                    wa_z3rl-zzkunnr    = <wa_tab>+7(10).
    * Populate change tables
                    CLEAR wa_change.
                    wa_change-teilobjid = 'Z3RL'.
                    wa_change-textart = 'TEST_2'.
                    wa_change-textspr = 'EN'.
                    wa_change-updkz = 'U'.
                    APPEND wa_change TO ts_change.
    *call the fM to log the values in CDHDR table.
                    CALL FUNCTION 'Z3RL_WRITE_DOCUMENT'
                      EXPORTING
                        objectid                 = 'Z3RL'
                        tcode                    = sy-tcode
                        utime                    = sy-uzeit
                        udate                    = sy-datum
                        username                 = sy-uname
                        planned_change_number    = ' '
                        object_change_indicator  = 'U'
                        planned_or_real_changes  = 'U'
                        no_change_pointers       = 'U'
                        upd_icdtxt_z3rl= 'U'
                        n_z3rl= wa_z3rl
                        o_z3rl        = ls_z3rl
                        upd_z3rl= 'U'
                        lv_opt                   = ' '
                      TABLES
                        icdtxt_z3rl= ts_change.
                CLEAR : wa_mod, <wa_tab>.
              ENDLOOP.
    Edited by: JaiKarthik on Apr 7, 2010 6:49 AM

  • Change document logs

    Hi experts.
    Do somebody know how can I plan the deleting of the change document logs?  It's the CDHDR table.
    This morning I've found that this log has been emptied and we need this information for some important workflow reports, on concrete words, this is being happening for some object class such like "material".
    Thanks and Regards.
    Ismael

    So you have the update (V2) FM to update change document, but did you also create an update (V1) FM to update the database table (Similar to following sample.)
    CALL FUNCTION 'Z_YOUROBJECT_UPDATE_V1' IN UPDATE TASK
       TABLES
         xztable = xztable
         yztable = yztable.
    CALL FUNCTION 'Z_YOUROBJECT_WRITE_DOCUMEN_V2' IN UPDATE TASK
       EXPORTING
         objectid                = objectid
         tcode                   = tcode
         utime                   = utime
         udate                   = udate
         username                = username
         planned_change_number   = planned_change_number
         object_change_indicator = cdoc_upd_object
         planned_or_real_changes = cdoc_planned_or_real
         no_change_pointers      = cdoc_no_change_pointers
         upd_ztable              = upd_ztable
       TABLES
         xztable                 = xztable
         yztable                 = yztable.
    COMMIT WORK.
    Regards,
    Raymond

  • Location where the change document log is stored

    Hi all,
    In SRM bidding process, I need the initial bid price and the final bid price, quantity before negotiation and after negotiation, PR or project number for that bid invitation number. Can anyone tell me where these are stored. Actually I want to know where the changed document log is stored.
    Regards,
    Asha

    Hi Asha,
    AFAIK there is no Project Number in Bidding Engine.
    Until Quote versionning (SRM 6.0 ?), there is no other way than looking at change documents.
    All changes are stored in change tables: CDHRD and CDPOS.
    You can try to reuse FM BBP_CHANGE_DOC_GET_NEW.
    Rgds
    Christophe
    PS: please reward points for helpful answers.

  • How to create the change document functionality for a dependent objects?

    May I please know how to create the change document functionality for a dependent objects?
    I have done it follow the same process as for business process objects. But when i try to test it in BOBT, there is no records under "FIELD_CHANGE_WITH_FILTER". It seems the change hasn't been recorded.
    If the way I did to create change document for dependent object is correct, please also kindly advise the possibilities for why there is no record during testing.
    thanks in advance.

    I also have some doubts about the business object.In this case,one abstract BO hase a subnode wihich is root extended.I added the change document for this node under the category "root_extended" and then tested the function in BOBT.I got some error message "can't find the root key".Shall i redefine the method /BOFU/IF_CDO_CREATION~IS_CDO_CREATION_ACTIVE so as to solve the problem?
    Thx.

  • Change document type for J1inchln

    Hi All,
    I need to change document type for Tcode 'J1INCHLN'. Currently we are using document type 'SA'.
    Please guide.
    Regards,
    Raj Sir
    Moderator: Please, search before posting

    Dear raj sir,
    Please follow this link.
    SPROu2192 Financial AccountingFinancial Accounting Global Settings  Withholding TaxExtended Withholding TaxPostingsu2192 Indiau2192 Remittance Challansu2192 Document Typesu2192 Specify Document Type
    hope this helps
    regards

  • Change document type for Depreciation postings

    I need to change the document type for depreciation postings due to document number conflicts resulting from inter-company code depreciation (reference OSS note 51860).  But the system will not allow me to do this because "depreciation has been posted" AC 086 (depreciation <u>has</u> been posted in prior months).  Does anyone know of a way around this?
    Thanks,
    Cynthia

    Hi Cynthia,
    Have you tried Tcode AO71. You can probably change document type for dep posting by company code.
    This does not work for you?
    Let me know.
    You can reach me at [email protected]
    Thanks
    Ajay

  • Error while TOC created when change document  approvle for UNIT testing

    Hi All,
    During change document approval for unit testing, we are getting error, when I checked in detail, it is giving error for transport of copies error as below
    it seems to be getting locked with original transport,
    also I can't see change in transport of copies
    Does someone has any idea?
    Dinesh

    Hello Dinesh,
    Perhaps the tasks of the Transport Request were not released.
    Try to release the tasks only (from your DEV system), then choose action "Pass normal change to test". This will generate a ToC to be transported into your QAS.
    Then from the Task List, you can schedule the background job to import the ToC into QAS system.
    Regards,
    Daniel

  • How to set-up change document object for deliveries??

    Hi experts ,
    kindly help me with this config , I did some researched and none of them have solve my problem.
    i need to know on how to set-up a change document object for delivery documents.
    Change document object LIEFERUNG is not available in transaction SWED.
    How will I add this change document object in SWED?

    hi ,
    im wondering why even the existing object VERKBELEG is not being triggered?
    would you know any reason for this?

  • Get change documents log

    Hi Experts,
    I need to get the same log that we get in transaction CRMD_ORDER when we go to 'Extras->Change Documents'.
    This log didn't seemed to be quite difficult to find but I can't find a way to get it by code.
    I have searched for many BAPIs and I have also searched the forum. There are many similar questions but I don't find an answer for this, so I'm asking you.
    Can anybody help me with this?
    Thanks in advance,
    I won't forget the reward points.

    Well, this has been a little hell.
    I tried the CHANGEDOCUMENT functions before and it seemed I couldn't use those. I have been debugging for a long while and finally I have found this function:
    CRM_CDORDER_DISPLAY
    It's exactly the function I was looking for, it's the one the system uses to display the log. The only problem was that you have to mark the 'I_NO_DIALOGUE' flag to avoid the dialog window where you get the log and that you have to know which is your object type.
    No problem with that so, question answered. I am writing this for people to know the solution.
    Thanks anyhow to everyone who has replied.

  • Change Documents - FB02 for Noted Items

    Hi
    I posted one customer noted item (with TCode F-49) for bank guarantee. There are two fields BSEG-MSCHL and BSEG-MABER.
    Now i have defined drop downs for the same.
    While posting transaction, user selected wrong items from dropdown and saved the document. Now in FB02, i tried changing these fields, but these fields are not appearing only.
    I checked in Rules for changing document line item. These two items are there in the list of fields allowed to change. Inspite of this its not appearing.
    Let me know the reason why these fields are not appearing in FB02.

    Transaction type field is empty.
    There is a tick in FIELDS CAN BE CHANGED.
    In stipulations for changing, only following is ticked:
    LINE ITEM NOT CLEARED
    In stipulations for changing, following are unticked:
    Posting period not closed
    Customer Debit or Vendor Credit
    No invoice related memo
    No credit memo for down payment

  • Change Document Types for CV02N

    Hi
    We implemented SAP content server and have assigned a lot of the documents in CV01 to a wrong/incorrect Document type.
    Now we have to limit the authorization based on the document type.
    We were wondering if there is a way to change the Document Type of an uploaded document, say for example, Change a document from Document type "NPO" to say "NSC" or vise versa.
    Is there a report of something that can help us?
    Thanks
    Abhi

    You will not be able to change the document type of already uploaded documents...
    Instead you can go to those DIRs and mark those DIRs for deletion and run a Standard SAP Program "MCDOKDEL" in T-code SE38 which will delete all DIR marked for deletion.
    Afterwards you can create DIRs under right Doc Type,
    Control Authorization based upon Doc. Type - use Tcode PFCG

Maybe you are looking for