Urgent: track changes made in qp02

hi all
i want to track the changes made in qp02
like we did in purchase order or req in the environment menu
i know the tables but i want to know
whether it can b shown in somewhere in tcode.
its very urgent
regards

Hi,
Look for the change history in change header and change positions.
The tables are CDHDR and CDPOS.
Regards,
Renjith Michael.

Similar Messages

  • Track changes made to existing comments

    How can I track changes made to comments in Word 2010? It seems that with track changes on, you can tell which user made which edits within the body of a document, but track changes fails to track changes made to content within comments.

    As far as I know, track changes would not track the changes made to existing comments. You can see:http://office.microsoft.com/en-001/word-help/change-options-for-track-changes-HA104053477.aspx?CTT=5&origin=HA102840151
    Maybe we can track the changes made in comment with the help of VBA code.
    Best Regards,
    Wind

  • How to track changes made in the ERD in oracle designer

    I want to track all changes made in my ERD in oracle 10g designer. Please suggest how to achieve it.
    use case: An ERD was approved in design phase. Few changes were made by development team and now in Implementation phase I need to track what all changes were made from say 3-Jan-12 to 3-Mar-2012
    Edited by: 909570 on Mar 5, 2012 1:14 PM
    To add here:
    Designer Version is 10.1.2.0.2.
    1. In my project versioning of ER is not being used so ER Version diff is not an option for me.
    2. In Reports, there are options for getting all entities, attributes which are created/modified in a period. But it seems it is not giving me correct results.
    Edited by: 909570 on Mar 5, 2012 1:14 PM

    Since versioning if off, there is no way to track changes.
    You can get a rough overview of possible changes by looking at the audit attributes (date created, date modified) in the properties palette, but that is already mentioned in your point 2.
    Basically, developers should comment what they added/modified.

  • Tracking changes made to the finance quotation(CRMD_ORDER) line item

    Hi All,
    I want to track or identify changes made to the line item of a Finance quotation in Transaction CRMD_ORDER. User may change any where(any tab) at line item level.
    I found that CRM_ORDER_READ function module has one import parameter IV_ONLY_CHANGED_OBJ. I tried to make use of this, but could not identify the changes.
    Appreciate if anyone can provide me a better solution.
    Thanks in advance.
    Regards,
    Prasad

    Hi Anirban,
    I'm developing some program, i need some FM or sample code to findout the changes made to the line item. Not in the GUI.
    Thanks and Regards,
    Prasad

  • Track changes made to the master data

    How do I track changes according to the users, made in master data files like the item master, Business partners, tax codes, item groups ?

    Hi Vivek,
    If you want to trace the changes that have been made to the masters, oprn that particular master and go to Tools> Chnage log> show differences.  Similarly you can trace the same for any marketing document. Hope this helps.
    Regards,
    Joseph

  • Track changes made to Invoice in VF02

    Hi,
    The scenario is as follows:
    When an invoice is changed(any status change or tax information changes or any other field), i need to trigger some implementation of my own.
    I could achieve this for Sales order through change document VERKBELEG and transaction SWEC. Change document FAKTBELEG doesnot work for the invoice in 'swec' in the same way. Is there anything missing? Or is there any way that i can track these changes and trigger some implementation?
    Best Regards,
    Varalaxmi

    Have you tried in VF02 > Environment > Changes where system will show the changes made to that billing document.  May be you need to explain clearly what / which field you were expecting the system to show.  You can also explore AUT-10
    G. Lakshmipathi

  • How to track changes made to the standard objects by SAP during upgrade ?

    Hi All,
    Can any one of you please let me know if there is any straight forward method to find any change made to the standard objects by SAP in different versions ?
    Like for eg, during upgrade from 4.6c to ECC 6.0.
    Thanks in advance.

    > For eg , if SAP has made any change in the standard  transaction IE02,  in ECC 6.0 how will we come to know those changes?
    There are two sources for that:
    The "Solution Browser" (http://solutionbrowser.erp.sap.fmpmedia.com/) which lists the differences between source and destination release and the release notes (http://service.sap.com/releasenotes). You'd need to read here all those from 4.6 to ERP 6.0 (so 4.7, ECC 5.0 and ERP 6.0) to find out the behaviour changes.
    Markus

  • Track Changes made in Routing Operation Detail

    Hi gurus,
    I need your help with Routings.
    We have a process where if a change is made into the Routing, we have the Change Master process and a Change number is assigned to this Routing.
    For example, if a change is made into the Description of the "Operation" into the Routing, I can see this change with transaction CA60 and CA61.
    But, if a change is made into the "Operation Details" i.e.:  change the labour data or the overlapping data (where before it was Required overlapping and now is No overlapping); this kind of change into my Routing is not showed in transactions CA60 or CA61.
    I checked that a changed was made because the "Changed on" field was updated and "Changed by" field.
    Then, I checked the tables CHDHR and CDPOS and I can see that a document was created with the changed that I did, but, it does not show the detail of my change (i.e. old value was: Required overlapping, new value is: No overlapping).
    Do you know where I can see that my change was made? Or, is it possible to track these kinds of changes into SAP? where and how?
    Many thanks for your time and your feedback will be very well appreciated!
    Regards,
    Sandra

    Hi,
    Look for the change history in change header and change positions.
    The tables are CDHDR and CDPOS.
    Regards,
    Renjith Michael.

  • How to track changes made in a jsf form element.

    I am in a page and editing some form elements. I click on some other link which will take me to another page. Before moving to another page I want to check if there are some unsaved data in the page. If some form elements are edited, I want to throw a confirmation alert, if the user wants to move to the other page without saving the edited data.
    This can be accomplished by having a hidden flag which will keep a track. On change of any element, a javascript function will be called to set the hidden flag. So before going to any page we can check the flag and throw an alert.
    But this process will be needing much coding effort. Is there a way in JSF to track the change in a form by backing bean or some other process?

    JSF offers a serverside ValueChangeEvent for that. Every UIInput component supports a 'valueChangeListener' attribute (and a f:valueChangeListener facet) which can point to a method in the backing bean which takes a ValueChangeEvent parameter. This will only be invoked if the new value differs from the old value. This costs one trip to the server though.
    E.g.<h:inputText value="#{myBean.value}" valueChangeEvent="#{myBean.valueChanged}" />MyBeanpublic void valueChanged(ValueChangeEvent event) {
        Object oldValue = event.getOldValue();
        Object newValue = event.getNewValue();
        // Do your thing.
    }ValueChangeEvents are invoked in the 3rd phase of the JSF lifecycle, after validation/conversion and before update model values. Also see http://balusc.blogspot.com/2006/09/debug-jsf-lifecycle.html

  • How to track changes made to a group owner for Distribution/Security Group in FIM 20101 R2?

    We have a requirement where we have to send a consolidated email to the new group owner which lists all the groups that are tagged to him/her.
    This requirement is needed so that the new group owner can be notified of the groups that he/she owns. Group owner information can be updated in AD which would then sync with FIM, Bulk updates for groups in FIM.
    So first we would have to basically track the group owner change in FIM, retrieve the owner information, then list all the groups listed under him, consolidate an email and trigger the notification.
    Can someone help me and let me know how this can be achieved?
    Thanks in advance!!

    Hello,
    you can not do with only OOB functions. You will need a custom activity to enumerate all group a specific persons owns.
    First part is easy, create a MPR which triggers a workflow activity on owner attribute changes.
    The custom activity should then search for all groups new owner owns in addition.
    Pass that information through the WorklowDictionary to a notification activity.
    If your are not familar with developing workflow activities you could use PowerShell Activity for example.
    /Peter
    Peter Stapf - ExpertCircle GmbH - My blog:
    JustIDM.wordpress.com

  • How to use output determination: track changes made on the contract

    We have a third party application which is requiring a delta change log of contract from SAP, does anyone know the mechanisms of using output determination to track all the changes on contact level?
    Thanks a lot!

    Hi,
    You can use SAP change documents.
    Please refer to the link below:
    [http://help.sap.com/saphelp_erp60_sp/helpdata/en/18/7e713ae142d65de10000000a114084/frameset.htm|http://help.sap.com/saphelp_erp60_sp/helpdata/en/18/7e713ae142d65de10000000a114084/frameset.htm]
    Cheers

  • Urgent-About Changes made in Development to QAT

    Hi,
           i have changed 5 lines of code of existing report and saved it in DR1(Development) with request no and then moved it to QAT.
    For that i have sent mail to basis guy.  And i have get confirmation from basis guy that it is moved to QAT.  But until now the changes i have made are not reflected in QAT.  Can any body help about this problem imm.
    Syed.
    voice: +91-9986861730.

    Hi,
    What you can do is
    Login to QAT and then goto transaction SE09, there check if your transport has arrived.
    You can also check in DR1, going to SE09 if the transport has reached the system in the LOG.
    There you will see if it has reached QAT, if it has reached then check in the request object list of the object you have modifed is there or not.
    Regards,
    Sesh

  • Track changes in business rule made using SOA composer

    Hi,
    I have business rules deployed on a server. Authorized user can change condition or any other thing in a business rule using soa composer. How can i track changes made in this business rule?
    i.e. I want to view the change and if possible who changes it.
    I am using SOA 11g
    Any help is appreciated
    Thanks

    Below document describes how to Monitor Decision Service Components and Engines.
    http://docs.oracle.com/cd/E29597_01/admin.1111/e10226/rules_mon.htm#CJAJJIJB

  • Reports to track changes on Deliveries and Sales order

    Hi All
    Do you perhaps know of a specific report that could possibly track changes made to a Sales order and delivery at line item level.
    The problem is change log only logs the deletion of the line item but not the actual material number.
    Do we have to enhance existing reports to achieve visibility for deletion of line items.
    Regards
    KC

    Hi Lakshi
    Thank you very much for that feedback the thing is that you can search that on an order per order basis and even when you get to the change log you will not be able to see what material number was deleted.
    That is the problem.
    Has anyone experienced this wher the requirement was to have a report to run so see what changes have been made to orders or deliveries that they could view wholistically.
    Kind Regards
    Kasavan Aboo

  • How to track changes to longtexts (in tables STXH, STXL) ?

    Hello everybody,
    I need to track changes made to the long texts in sales orders.
    Reading change documents tables (CDHDR, CDPOS) does not work for the long texts tables STXH, STXL as no relevant data is written.
    Only the latest entry is stored in STXH and STXL.
    Where to look for changes made to the text tables ?
    Many thanks and kind regards,
    Chris.

    Hello Carsten,
    Thanks for the tip, it was very helpful !
    kind regards,
    Krzysztof.

Maybe you are looking for

  • Why can't I print to a Zebra 2746e using the report tool kit?

    I have read on here how peoople have printed barcodes from LV by sending commands directly to a zebra printer. I am using LV8.2.1 on a windows xp computer. I am sending EPL2 messages to the printer using the report tool kit, but all I get is a couple

  • How do I convert a PDF to word then get it open so I can edit?

    Hi just purchased the PDF pack and when I tried to convert my PDF it showed up with a different heading  foreign looking letters and all crooked on page.  How do I edit this?  When I try to delete or type over the whole image goes blurry. It just won

  • Impdp - ORA-39126: Worker unexpected fatal error in KUPW$WORKER.LOAD_METADA

    Hi, I am trying to refresh my local DB and getting this error. I have recreated(drop and create) the SR user and tried importing the fresh copy. Import is working fine on the new Database i.e Deleting and creating the database. pl. help me finding th

  • Aperture "data base inconsistency"

    I'm shooting a project in the middle of Sudan and Aperture (2.13) has suddenly quit. My library is on a correctly formated external, the vault on another one. I got a message saying Aperture had detected a database inconsistency, and directed me to r

  • 16 bit WAV file

    Hi everyone. Im trying to understand something about WAV files (or rather about how 16 bit audio works). a 16 bit sample has values from -32768 to 32767. If 0 is the zero crossing then what do you do with this asymmetry? There are 32767 "pos" values