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

Similar Messages

  • Urgent!! How to update Planning book and change when planning will start

    Hi Gurus,
                 I had configured the system and we can initilize planning area every month and my question is 
    1. How to update planning book and change planning start date every month?
    Thanks a Lot
    Regards,
    Raj

    Hi,
    In the planning book-dataview, you will assign the time bucket profile, and will be on rollling basis. if you want the forecast profile on rolling basis, maintain the forecast and history horizon as periods then that will also be on rolling basis.
    Regards,
    Raj

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

  • How to track a book purchased through Aperture

    Made and purchased a book through Aperture.  Have never received a receipt confirmation or any tracking information, nor has my credit card been charged.  Do they charge and confirm at time of shipment?

    See the print products page for a link to the order status. If you are not in the US,replace /us/ in the link be thecode for your country.
    http://store.apple.com/us/help/print_products
    Since you did not receive an email confirmation, check, if your emal is working. Have you previewed you book before ordering? If the book contains corrupted media files, it may not upload. And if  there are problematic fonts or something, the Apple Print Products Store may cancel the order witthout sending a confirmation. So check the preview carefully and save the PDF:
    iPhoto, Aperture: Previewing an order in iPhoto or Aperture

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

  • TSCOPY:keyfigure copy one planning book to other book

    Hi,
    When i copying the keyfigure values from one planning book to othe Planning book through /SAPAPO/TSCOPY, the keyfigure is copying all the other keyfogure values also in the other planning book., I need to copy only one keyfigure row values to other planning book keyfigure row. Not all key figure values.
    I hope to get solution form APO DP experts.,
    Advance thanks for provide solution of my problem
    Regards,
    R K Sadasivam

    Hi Sadasivam :
    I think  you had placed a check mark in the box of Propose Key Figures While executing the TSCOPY transaction due to which it is triggering copy of all Keyfigures.
    Plz do not place this checkmark and manually chose the Key figure which you want to copy in source and target tabs.

  • Multiple attachment of planning books to planning area

    Dear all,
    I am facing an issue:
    When I copied the planning book in a planning area without making any changes I was not able to display the original book,
    In display I found that planning area of original planning book was changed and the copied book had the requried planning area.
    Please advise..
    Regards,
    Amol Chavan

    Hi Amol,
    Not sure if I understand your question correctly. But I guess you have got a planning area assigned in your planning book which you need to change. Goto Define Planning Book (transaction /SAPAPO/SDP8B) enter the planning book for which change is required. Then click on Edit (in the menu bar) >> Assign Planning Area. This will list the planning areas in the system and you can change the planning area suitably. Please note after this you need to go and check for the characteristics and keyfigures in the planning book and data view. These may be changed depending on the new planning area. Macros needs to be checked as well.
    Hope this helps,
    Somnath

  • Excel upload data to planning book not working

    Hello Gurus,
    i have checked the online resources first before posting this thread here as this is most old topic relating to upload of excel data to planning book key figures.
    Here is what i have done so far
    1) from the planning book, i chose a view and downloaded the file to desktop and saved it as CSV. i populated the key figure values and saved the csv file as-is back to desktop
    2) i had to remove the hdeader from the file as APO threw back an error that it could not interpret the period (header) as the number
    3) when i took out the header i simply pasted the values and the file was ok
    4) i went to planning book, loaded the file, checked the file and it said that the data was read and i clicked on upload the file
    5) everything was green, then but i do not see the values in the grid of the planning book
    what else i'm missing.
    can someone please help me
    thanks
    Ravi

    Hello DB and Ada. Thank you for your valuable suggestions. I know i might be missing something silly here. If i keep the header that i downloaded from the planning book into csv file, i get an error while uploading the file back to planning book that unable to interpret 11/2014 as a number.
    P11/2014 is the header, Period 11/2014 is the fiscal period. we plan in fiscal periods.
    if i take out the header from the csv file and just populate the key figure values, then i do not get any error when i load the file back to planning book, but then the values do not show up in the planning book grid.
    i'm keeping the planning book in the change mode while uploading the file as i got that error saying that i need to keep the planning book in change mode for the file to load data properly to planning book.
    Thanks
    Ravi

  • Holidays in Planning books

    Hi,
    In our Demand Planning scenario, our horizon is for one month with daily buckets. Sales person gives demand on daily basis.
    Grateful, if somebody suggest me on how to make planning book columns display only for holidays (sales person will not be able to enter demand in planning book on holidays).
    Thanks & Regards,
    SP

    not sure if you want this in a DP or SNP book... and i assume you have a daily bucket in your planning book/data view
    you can use calendars in a location in SNP and in DP you need to set up a factory calendar in the time stream id for the storage bucket profile. this factory calendar will have the Holiday calendar in it
    after this you can use one of the two macros to determine the work days in the bucket. you apply this to your daily bucket and save the value (say, WDAY) returned for work days = 0 or 1
    BUCKET_WDAYS( <calendar> ; X1 ; ... ; Xn) returns the number of workdays in the periods given by the cell(s), row(s), and/or column(s) (not areas) X1 through Xn. In the attributes of the argument elements, you must specify Period data as the data source. The specification of a calendar as the first argument is optional. If you do not specify a calendar, the system reads the calendar given by the time stream in the storage buckets profile. If no time stream is defined, the system uses calendar days
    CALENDAR_WDAYS( ‘calendar’ ; from date ; <to date> ) returns the number of workdays between the from-date and the to-date in the calendar specified. The calendar is the timestream ID.
    then if WDAY = 0
    use Column_input( 0 ) to make the columns display only
    else keep it open

Maybe you are looking for

  • Installation of a digital signature

    Hello! I have the following problem and I am desperate. Today I have registered a new digital signature and I have to install some drivers on my Mac. One of it is from the following website http://pcsclite.alioth.debian.org/ccid.html . Even though I

  • Get rid of 'View Entries' in a SharePoint 2010 Append-Only

    Hi, I have SharePoint List and that has "Comments" column which is "Multiple lines of text" and with "<label for="onetidAppendOnly">Append Changes to Existing Text</label>". It is showing "View Entries..." as a Item in a List View Comments Column. I

  • Windows has failed to load

    My laptop turns on to a black screen telling me it has failed to load due to a possible hardware or software change. What can I do to resolve this issue? Thanks

  • Font Book Issues

    I installed some fonts and now have 1148 installed, many of which I wish to remove. However, Font Book 3.0 freezes on loading so I am unable to proceed. Your assistance is much appreciated. I am running OSX 10.7.4.

  • BI reporting of data in SharePoint 2010

    Hi, We have a SharePoint 2010 Team Site where we want to implement/record Risks and Issues . Could you help me with some pointers where i could see examples on Project Risks and Issues depiction in graphs and charts in Sharepoint. Tnx