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,

Similar Messages

  • 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 usage of tcodes for a particular Login id

    *Hi experts,*
    *Kindly tell me how to track the usage of transactions for a particular Login Id. Is there any tcode from which we can get the report for the same? If suppose 100 tcodes has been assigned to a particualr Login Id, I have to confirm whether in the last  month have the users executed all the tcodes assigned to them or not.*
    *Kindly revert for the same.*
    *Thanks & Regards,*
    *RESHMA*

    Reshma,
    The first thing you have to consider is why the tcode is in the role at first place, conventional wisdom is - Role was identified, its functions were identified (or the other way around) and then corresponding tcodes were identified to perform those functions and then role was updated with these tcodes. Now rather than approaching it through the frequency of tcode use, you shoudl revisit the business process or function and evaluate if it is still required in the role. Depending upon this requirement, you should reevaluate your role design. Usually you should just prepare the role-to-tcode matrix and have the business/Function review it periodically.
    going by frequency can be misleading, I will give you a scenario - what if the user executes a tcode only once a quarter or 6 months or a year, with rest of the time the function is performed by junior staff or some other team member through a different role. So best practice I can suggest is to review the role-tcode matrix.
    You can however check the frequency using Audit Logs in Sm18-20 as mentioned by Vikas above. These are pretty easy to configure but size of logs can get unmanageable depending upon filters.
    Regards,
    Shivraj

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

  • How to track changes in DataTable rows?

    Hi, I'm wondering what are you using to track changes in datatables. As far as I can tell, there is no way to know what editable componentes in each row have been modified. That forces you to clone() the objects in the rows to compare them after the

  • Camera RAW 4.6 plug-in for CS3 on Mac - download problem

    When I download and try to install Camera RAW 4.6 on my Mac (OSX 10.7.5, Safari browser) I get the following message "Could not complete your request because photoshop does not recognize this type of file."  Suggestions?

  • G3 nano is synced w/ my IBM T40 laptp.  want to sync it on new imac.

    I want to be able to use my nano w/ my new imac. when i installed itunes and then connected my nano, the library was not there and the nano was not recognized. what do i need to do to get the nano to work on my new imac ?? also, once i get the nano t

  • After I burn a DVD I am unable to read it again

    I have archived some files onto DVD's and after the disk is burned the icon comes up on the desktop. If I double click on the icon the disk seems to open and show it contains all the data I burned to it. However once I eject the DVD, when I reinsert

  • Values on the jsp page not loading after refresh

    Hi All, I have a problem in getting the values back onto the jsp page after a refresh. After the first refresh i get null values. Let me know what i should use: is it 1. request 2. application or 3. session scope? I have to keep my application runnin