Change document details for a particular incident

Hi All,
I have a requirement like we are creating a ticket through Help------>Create support message.
And Ticket owners can update the ticket through crmd_order transaction and change the status from open to in process and so on.
So when ever a user updates the ticket the detials are getting updated in the Extras------>Change documents.
I need to create a ABAP report which should indicates the changes made to the particulat ticket( I mean to say i need to grab the history of owners who handled the ticket)
Can any one provide me some table or logic from where i can take this history?
Appreciate your answers.
Thanks,
Joe

Hi Joe.
Any transaction changes in SAP are stored in tables CDHDR (header) and CDPOS (details).
First, find the value for key fields OBJECTCLAS and OBJECTID of the data that you will be reporting. You can do this by creating a sample ticket and then search the corresponding record in CDHDR using your username (USERNAME) and the current date (UDATE). (This will take few minutes as this is a big table and you are not searching using an index field. Preferably, you should do this query in you development Solution Manager, if you have one).
Another way to get the OBJECTCLAS is to get the GUID from CRMD_ORDERADM_H of the ticket that you have just created and then search CDHDR using OBJECTID.
Then, you can search the history of changes in CDPOS using the OBJECTCLAS and OBJECTID.
I hope this information can help you.
Regards,
Tess

Similar Messages

  • Material Price Change Details for a Particular Vendor

    Dear All,
    Please let me know where can we see the Material Price change details for a Particular Vendor. We need to know how many times price changed for a particular vedor and what is the price changed for a particular vendor.
    Regards,
    Karthik

    Hi,
    Just try to check in t.code: ME1L
    Price change document of a material can be checked in t.code: CKMPCSEARCH
    Regards,
    Biju K

  • FM to fill outbound IDOC with change document details.

    Hi ,
    I am working on an enhancement EXIT_SAPLMGMU_001 for an interface to track the changes to the material master.
    Can someone please let me know if there is a FM to populate outbound IDOC with change document details like when a material is
    created /changed. Thanks much.
    Regards,
    Sanjeev
    Edited by: sanjeev.s on Apr 14, 2010 3:32 PM

    Call the function module "MASTER_IDOC_DISTRIBUTE" to create idoc.  Use function module "CHANGEDOCUMENT_READ_HEADERS" to get the change document details.
    Regards
    Vinod

  • 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

  • CJ20N - Change Document Details

    Hi All,
    We need to capture the details of the project and WBS elements in change document tables(CDHDR,CDPOS). Right now when the project is being created and released in the Cj20N then only it captures the change document details in CDHDR table. If I create any project and hit the save option then it is not getting saved in CDHDR table. Even if i add any WBS element in the existing Project and hit the save button the information is not captured in the change document tables. I checked the configuration in SWED, SWEC,SCDO also. But the details are maintained properly. Could any one please guide me how to resolve this issue?
    Regards
    Ram

    HI Madhu,
    I followed the same step which you mentioned and I am able to check the change history. But could you please clarify few points. 1. I am not able to find the change history details of the WBS element in CDHDR under my name when ever I am chaging something or creating new WBS element. 2. The 'I' icon checking and EXTRAS->CHANGE DOCUMENT-> STATUS ALL needs to be done for each and every WBS element that I am creating ? 3. This 'I' con is available for each and every WBS element that I am creating so Do I need to do this for all the WBS element?
    Please advise.
    Regards
    Ram

  • 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

  • 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

  • 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?

  • Customer Cllection details for a particular period

    Hi All,
    is there any report which shows customer collection details ( payments received ) for a particular
    posting period..?
    Is there any other way we can extract this other than display line items..?
    Thanks,
    jaya

    Hi Jaya,
    U can follow any of the below two option:
    S_ALR_87012177 - Customer Payment History  report
    or
    Go to FBL5N
    Run the report for the required period with document type DZ in dynamic section.
    By this u would get only the payment entries for the said period.
    Regards,
    Kiran

  • Changing Assignment Details for multiple user

    Hi everyone,
    In the RelationShips tab of a bundle, how can we change the "Assignment Details" for multiple user at once? Per exemple, I have a bundle that have about 100 user assignments. The bundle show on Start Menu but no on the Nal. If we want all of our users to have this bundle on the Nal Windows, how can we instruct that easily and quickly, instead of selecting each user and changing the Assignment Details ?
    thank you for your help !
    DM

    I am also trying to update the shortcut locations on many apps for a mass amount of users. Mr. Pond, or dominicm, can you explain or give a example ZMAN command that would be able to do this? From the documentation I can find it only seems to affect the distribution and scheduling but not the shortcut location.

  • 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 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 - 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

Maybe you are looking for