How to track WCM Operaional WCD changes

Hello,
  We are in stage of implementation of Work clearance Management (WCM). There is requirement to track change history of operational WCD attached to isolation application.
Maintenance person proposes isolation and operations person prepares the isolation (WCD) as per the same proposal.
Please guide me to capture maintenance proposal ( WCD) and prepared by operations. IS SAP keeps change history at WCD level. There is facility of "changes (Header \ Items)"  at Menu Path , but no history stored there.
Sanjeev

Hi,
following change documents are available:
- Header data (menu function)
- Items ( menu function)
- approvals (dialog box of approvals)
- assignments ( dialog box of assignments)
- statuses (dialog box of statuses)
Regards, Uwe
(:= place where you can find the functionality)

Similar Messages

  • How to WCM Operaional WCD items in Ztable

    Hello
    There is requirement to store WCM Operaional WCD items in Ztable at time of creation and saving after flagging a user status.
    We are trying the BADI -
    " BADI_WCM_OPWC" but it is not helpful. Can any body suggest any other method or enhancement spot.
    Regards
    Sanjeev Dhavan

    There is requirement to store WCM Operaional WCD items in Ztable at time of creation and saving after flagging a user status.
    It is not clear to me what you really mean by at time of creation and after flagging a user status. Do you mean when the items are physically saved to the database - or earlier when the user creates an item or changes the user status of an item? I'll assume you mean when the items are physically saved to the database.
    The update of the database of WCD items is carried out by the function module WCFZ_WCAIT_UPDATE. There you could by enhancement include additional functionality to update your own Z table. A word of caution  :whilst the enhancement framework allows an implicit enhancement of function modules - any implicit enhancement is likely to result in a semantic modification to the SAP program that can have unintended side-effects.
    I have spend many years working in WCM at a technical level and never ever had to do something like this. Nor would I.
    However, if you chose to do this - you must be aware that you should do absolutely nothing to interrupt the SAP update process. You may or may not be in an update task e.g. you cannot be sure other database updates are yet completed. You must not use status management. You must not change any of the SAP data. You absolutely must not use Commit Work. You must ensure that a failure of your update does not interrupt the SAP database update (Use appropriate try... catch for database operations).

  • How to track Service Order Status Change (IW31/IW32).

    I have a requirement to send the customer an Email if the status of service order has been changed say from unconfirmed to confirmed. So i have to find out whether the status of the service order has been changed on the current date.
    As per my understanding, Changes corresponding to any object are stored in tables CDHDR and CDPOS if the change document creation is enabled for that object. But in case of service order status, the changes are not being captured in these tables because change document creation is not enabled for the data element (J_STONR) of service order status.
    Anyone having any knowledge about it please help me.
    Edited by: Gagan Garg on Feb 23, 2009 6:52 AM

    Hi,
    Thanks for your reply. I have found out the way to track the service order changes. Function module STATUS_READ_MULTI can be used for the same. Pass service order number in OBJNR_TAB and the change document for status is returned in JCDS_TAB

  • How to track planning book keyfigure changes?

    Hi,
    If theere are any changes in the planning book keyfigure how do we track who has made it ?
    How do we see at keyfigure level data change and user who  chnaged?
    thanks,
    shan
    P.S:rewards guranteed

    these two links might help
    Re: APO DP macro to handle column data
    Re: SAP SCM APO DP - Planning Book
    you can create macros dorectly in production if u need it urgently. but if you transport a book from dev later it will overwrite what you have made

  • How to track transfer rule / transformation changes (in source code)?

    Hi all,
    let's say i add a routine to a transfer rule and i transport the change request to production, there's a way to know after that what was changed doing a comparison between the two source codes?
    Also, in the change request i have in this case one or more routine hashcodes like for example 4G0HLLGZZ0HR9BQQVMG7JTIBW, through this alphanumeric value i can track which routine was modified?
    Thanks a lot for the help
    Regards
    Stefano

    There is no version control for the code in Transformation Rules.  If you could change your logic to call an ABAP Class then you could have some kind of version control with the Class instead.  Hope that helps.

  • How to track no of  salesorders changed in particular day

    hi experts,
    can u please guide me for my requirement.
    i have a requirement to upload changed salesorders for everyday to applicatio nserver.
    can u please explain me how to get changed sales orders data? explain me the logic
    Thanks
    Gopi

    Hi Gopi Krishna,
    Refer to the standard program RVSCD100 .It shows all the changes for a particular document. You can get all the Function modules for fetching the changes for a sales document. From that if you analyse that carefully, you can get the result. Because i have worked on that and got the result i wanted.
    Reward if useful.
    Thanks & Regards,
    Khan,

  • How to track column level value change in oracle using procedures

    I would need to write the below code using oracle stored procedures & packages.
    DBA hates triggers so i cant enforce the same code.
    Please help me out to achieve the same. thanks in advance.
    if i do DML on master table (emp) , the audit should go to the emp_audit.i have used triggers but oracle DBA dont want to use triggers. Please guide me.
    Master table : emp
    column 1 : emp_id
    column 2 : salary
    create or replace TRIGGER test
    AFTER INSERT OR UPDATE OR DELETE ON emp
    FOR EACH ROW
    BEGIN
    IF INSERTING THEN
    INSERT INTO emp_audit
    (emp_id , salary,created_ts,CREATED_user,MODIFIED_TS,MODIFIED_usER, archived_ts, event_cd)
    VALUES (
    :NEW.emp_id,
    :NEW.salary,
    :NEW.CREATED_TS,
    :NEW.CREATED_user,
    :NEW.MODIFIED_TS,
    :NEW.MODIFIED_usER,
    systimestamp, 'C'); -- INSERT
    ELSIF UPDATING THEN
    INSERT INTO emp_audit
    (emp_id , salary,created_ts,CREATED_user,MODIFIED_TS,MODIFIED_usER, archived_ts, event_cd)
    VALUES (
    :OLD.emp_id,
    :OLD.salary,
    :OLD.CREATED_TS,
    :OLD.CREATED_user,
    :OLD.MODIFIED_TS,
    :OLD.MODIFIED_usER,
    systimestamp, 'U'); -- UPDATE
    ELSIF DELETING THEN
    INSERT INTO emp_audit
    (emp_id , salary,created_ts,CREATED_user,MODIFIED_TS,MODIFIED_usER, archived_ts, event_cd)
    VALUES (
    :OLD.emp_id,
    :OLD.salary,
    :OLD.CREATED_TS,
    :OLD.CREATED_user,
    :OLD.MODIFIED_TS,
    :OLD.MODIFIED_usER,
    systimestamp, 'D'); -- DELETE
    END IF;
    END;
    thanks,
    bala

    i am sorry.
    we can't change master table emp structure.
    Audit table would be emp_audit.
    Please guide me to write some generic procedure to handle the audit , what ever insert/update/delete.
    Please do the needful. thanks in advance.
    Master table : emp
    column 1 : emp_id
    column 2 : salary
    Audit Table : emp_audit
    columns:
    emp_id ,
    salary,
    created_ts,
    CREATED_user,
    MODIFIED_TS,
    MODIFIED_usER,
    archived_ts,
    event_cd
    create or replace TRIGGER test
    AFTER INSERT OR UPDATE OR DELETE ON emp
    FOR EACH ROW
    BEGIN
    IF INSERTING THEN
    INSERT INTO emp_audit
    (emp_id , salary,created_ts,CREATED_user,MODIFIED_TS,MODIFIED_usER, archived_ts, event_cd)
    VALUES (
    :NEW.emp_id,
    :NEW.salary,
    :NEW.CREATED_TS,
    :NEW.CREATED_user,
    :NEW.MODIFIED_TS,
    :NEW.MODIFIED_usER,
    systimestamp, 'C'); -- INSERT
    ELSIF UPDATING THEN
    INSERT INTO emp_audit
    (emp_id , salary,created_ts,CREATED_user,MODIFIED_TS,MODIFIED_usER, archived_ts, event_cd)
    VALUES (
    :OLD.emp_id,
    :OLD.salary,
    :OLD.CREATED_TS,
    :OLD.CREATED_user,
    :OLD.MODIFIED_TS,
    :OLD.MODIFIED_usER,
    systimestamp, 'U'); -- UPDATE
    ELSIF DELETING THEN
    INSERT INTO emp_audit
    (emp_id , salary,created_ts,CREATED_user,MODIFIED_TS,MODIFIED_usER, archived_ts, event_cd)
    VALUES (
    :OLD.emp_id,
    :OLD.salary,
    :OLD.CREATED_TS,
    :OLD.CREATED_user,
    :OLD.MODIFIED_TS,
    :OLD.MODIFIED_usER,
    systimestamp, 'D'); -- DELETE
    END IF;
    END;
    thanks,
    bala

  • How to Track which Super user change the License Administration

    Hi Experts,
    My client recently encounter the License was allocated from a particular user id by an super user, resulting the end user unable to perform transaction when log onto SAP B1 8.8 PL19.
    Is there any way which we can trace and control which super user edit the License Administration and allocated the license to other user?
    Thanks in advance.
    Cheers'
    Vincent

    Hi Vincent,
    1. Login through manager then Go To Administrator--> System Initialization--> Authorization--> Additional Authorization Creator
    2. Additional Authorization Creator screen appear.
    3. Select any content on right side screen and click on Add Same Level button
    4. Authorization ID : Give any Name
    5. Name : Give any Name
    6. Option : Full/None
    7. Forms ID : Click on Edit Button --> Enter ID for License Administrator 60070.
    8. Click Update and Ok.
    9. Go To Authorization--> General Authorizations--> Select User in which you have block Graph--> User Authorization
    here select No Authorization.
    Just untick supper user check box of other user and give rights
    Thanks,
    Srujal Patel

  • How to Track changes of Detail and header at purchase document

    Hi
    I have one problem while issueing the output type i created new output type created new output routine and i have to track the header changes and issue proper output and prevent to issue wrong output type
    example : zne1 for header changes and zneu for detail level but i cannot track the header level changes becoz cdhdr and cdpos tables are updated after output routines (800 and 801 newly created and assigned)
    can u please tell me how to track the po level changes so i can solve this problem ASAP
    it is urgent !!! please help me in this !!
    thanks in Advance !!!

    Hi Mr. Modi,
                       Can you clarify your scenario properly that I can analyse it to give you proper solution....I am confuse with your requirement and  example which you have given...
    Cheers,
    Sagun Desai....

  • How to Track Reservation Changes...?

    Freinds,
    Can any one tell me how to track the Reservation(MB23) changes.?????
    I want to know when the Reservation has been created and when was the last change done for that Reservation??
    I tried to find in table RESB but no luck...
    Chandra.

    Ferry,
    It will show history of reservations for the specific material...but my requirement is if i change anything in any reservation how can i track those changes for that reservation..........
    Hope you got what i mean..
    Thanks,
    Chandra.

  • How to track the changes at report level

    Dear Team ,
    Could you please help on below scenario.
    1.Is there any way to track the changes for each report wise ? Does it possible using the audit database?
    2. how to get list for report names by each folder wise( public folders) ?
    Thanks & Regards
    Venkat

    Hi Venkat,
    1.In Webi we have a option called Track click that option to enable you to  track the changes in your report and also in Tracking option you can change the color as you preferred.
    2.Once report is ready to export click (Ctrl+E) and click Public folder then select New folder option available in right corner and create new Folder and export your report.
    Thanks
    Vignesh R

  • How to track changes

    Hi friends,
        I am a XI consultant. My query is regarding how to track the chages.I heard that CDHDR and CDPOS tables are used to store the information regarding the changes made to the objects/tables in SAP.My scenario is i have a table having few fields related to P.o and a flag indiacating Insert/Update/Delete, so upon the creation/upadate/deletion of a P.O(related to perticular WBS Element) i want the data to be  transfered into my table automatically.
       Is there any standard transaction available to do that....means i want to track all the P.Os under a perticular WBS element..
    If not Do we have to write a Abap program and use CHANGEDOCUMENT_READ_HEADERS,CHANGEDOCUMENT_READ_POSITIONS functions to store the data into internal tables ?????
    Regards,
    Gowtham K.

    HI gowtham,
    Yes, u are right,
    we have to right some abap code.
    "CHANGE DOCUMENTS" in SAP Terminology
    1 The same thing which u are asking
    we had developed here. For Eg : Any change
    in the material master will be detected
    and a mail will be sent to the concerned
    employee.
    THIS WILL ALSO DETECT WHICH FILEDS HAVE CHANGED.
    IT CAN ALSO GIVE, The Old Value, And The New Value.
    2. This Mechanism is called CHANGE DOCUMENTS in
    SAP Terminology
    3. 2 Fuction Modules are Required.
    (They will fetch necessary data from CDHDR,CDPOS)
    CHANGEDOCUMENT_READ_HEADERS
    CHANGEDOCUMENT_READ_POSITIONS
    4. The First FM gives list of all
    records ( with change no) which have changed.
    5. Loop at the above and the second FM will
    provide the details (old-val, new-val) for
    each record.
    6. While using 1st Fm, i used docclass as 'MATERIAL'.
    BCOS
    the concept of change documents is applicable
    to other type of documents also (depends upon
    customization)
    regards,
    amit m.

  • How to track changes on Infoprovider?

    Hi Gurus,
    Could you please provide the steps of how to track changes on Infoprovider? I had 4 Infocubes (belonging to the same info area) that contains compressed data - but now when I tried to display the data, all the cube are empty - no data were aechived.
    I would like to track any actions that were made on those cubes.
    Thanks

    thanks Kumar for helping me out here
    I tried RSD_CUBE_LOG_DELE function module - It came out "no logs found in the database"
    I tried tables RSDRDLOGHEADER and RSDDSTATDELE which provide me deletion informations like user name... but since we have partially archived those specific infoproviders in the same period of time where I think eveything was gone from cube, I am not able to related when and who the data that were not archived were deleted from Infocube
    Under manage Infocube --> archiving tab, all the created archiving request are only for certain dates (below 2006). I know that we had data above 2006.
    Kindly provide additional inputs.
    Thanks

  • 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 track changes for the config done directly in quality client-Reg

    Hi,
    In our system the landscape is Dev,Quality,Production.
    For some transactions we will do the config in dev and transport to other clients or maintain in each client manually.Eg QS41,CI41.
    In my case ,I have did the config in CI41 and transported to other clients.But someone user get in to CI41 in Quality client and did some changes. Now how to track the user Id through which the changes has been performed  in QA directly.
    Regards
    SB

    hi
    you can use SE09 for displaying the transport no where you can see all the request nos ,from there you can check
    also use the same transaction Cl41 do some changes like description ,then press the save button ,system will prompt you the previous saved Request No and make a note of it .cancel the request generation ,then you can trace them in SE09
    also check whether you can find any change documents is available
    regards
    thyagarajan

Maybe you are looking for

  • Send pdf instead of objectid with Note

    Hi all, can someone tell me if it is possible to send a pdf instead of a objectid with the note inside the servicedesk message? Kind regards, Richard

  • Labview crashing - running dll. motorbee

    Hi, I'm a student doing my masters project. I'm trying to run a dc motor with the driver board and software called motorway from pc-control.co.uk The board came with some software to run it and I have the dll. and header files. I have managed to impo

  • Retrieve the Purchase Order *TAX* Condition Records

    Hi, Tcode : ME23n Area  : Item Tab   : Invoice Tab in Item On clicking the button <b>taxes</b>  I can see different condition attached in the tax code. These taxes are available in KONH KONP table and the related Axxx table, (in my case A003 table).

  • Set width of custom control

    Hi all I have a cl_gui_custom_container in a dynpro. I would like to manage width of it. I tried to use method set_width, but it does not wrk. I try the get_width and it works. What am I missing? Is it possible to achieve width management? thanks Gab

  • JTable selection visible

    Is it possible to set a table or list selection always visible ? And if yes, How ? (of course) Thanks