Tracking Order Changes - Use of Change Log

Folks,
One of requirements I have is to track changes done to a sales order. The user wants to know anything (every field) that has been changed on an order compared to the previous sales order record. I think I can use the change log to do this but not sure if it tracks changes of all fields. Following are the questions I need to confirm
Can the change log used to meet this requirement?
Does the change log track the changes to every field on a sales order including the user defined custom fields?
Please let me know.
Thanks,
Faz

Answered. Refer to SAP Note 903027

Similar Messages

  • How to use the change log in ODS to track Delta change?

    People say that historical data (like Delta change) in ODS can be tracked in the Change Log.  How to use the change log to track historic data?
    Thanks

    Kevin
    See if it helps
    Every ODS object is represented on the database by three transparent tables:
    Active data: A table containing the active data (A table)
    Activation queue: For saving ODS data records that are to be updated but that have not yet been activated. The data is deleted after the records have been activated.
    <b>Change log: Contains the change history for delta updating from the ODS Object into other data targets, such as ODS Objects or InfoCubes for example.</b>
    An exception is the transactional ODS object, which is only made up of the active data table.
    The tables containing active data are constructed according to the ODS object definition, meaning that key fields and data fields are specified when the ODS object is defined. Activation queue and change log are the same in the table’s structure. They have the request ID, package ID and the record number as a key.
    Data base structure changes
    http://help.sap.com/saphelp_nw04/helpdata/en/d2/d53ec3efdc9b47a9502c3a4565320c/frameset.htm
    Hope this helps
    Thnaks
    Sat

  • Change tempo, not track order or placement!

    Hi all!
    I've got a big problem, a buddy of mine and I just recorded tracks off of his HD-recorder into Logic Express! We need to make back tracks for live use.
    Unfortunately he does not remember the tempo of the songs. And we need to put a click on there. "Songs are recorded using a metronome, and drum machine".
    My first thought was to take the drum track, cut tight to the first beat at the very beginning of the audio file, place it at the vere beginning of a bar, dragging all the other tracks along, to keep them in order, and change the songs BPM to fit the drum track. But when I change the arragements BPM, all the other tracks really mess up and starts to come in wrong, and so on.
    What do I do to keep my track order and still be aple to fit the BPM? I've tried cutting out a slice of the drum track and using the apple + T command, but same thing happens, the tracks are knocked about like crazy.
    Thank you
    Morten
    iMac 20" core dual, PowerBook15" G4   Mac OS X (10.4.9)  

    That's not the concept of "tempo" in GB - it always applies to the whole song. So the loops adjust to the tempo you set, and all other regions vary their tempo if you make the whole song faster or slower.
    What exactly are you planning to do? It doesn't make much sense to have the guitar playing in a different tempo from the drums ...
    If you want to adjust the tempo of another soundclip (that is not a loop) to your song, there's audio editors like SoundStudio or Audacity that can do that a lot easier.

  • Itunes 8 changed library track order

    My entire library was arranged by the track order of the album from which it came. The upgrade to 8 changed my entire library so that all the tracks in an album are arranged alphabetically. I do not know why this happened, but I would like the tracks in my library arranged by track order (the way that they used to be prior to 8). Any ideas??

    Click on the Artist or Album column header.

  • Track order changing on ipod since updating to itunes7

    after upgrading to itunes7, i updated my ipod, to find that on some of my albums the track order had changed. for example, track 7 would be before track 1.
    i dont understand why its happening, as the track order on my itunes library is correct.
    someone had a similar problem with track order changing but it was happening to their itunes library. heres the link for that http://discussions.apple.com/thread.jspa?threadID=663895&tstart=15
    i left a post on that thread to see if i get any replies from that.
    i use windows xp and have a fat colour display ipod.
    can anyone help me out?
    thanx

    I'm experiencing the same issue: iTunes (7.0.1.8) OK, iPod (5th gen) some albums messed up. Checked album settings, e.g. 'Artist', 'Album artist', 'track numbers' and reimported album, etc., however, so far unsatisfactorily. Did you manage to solve the problem?

  • ITunes changes track order when burning discs

    When burning a playlist to disc iTunes changes the track order.  I want the disc to have the same track order as my playlist.  How do I do that?

    Jim VanLeeuwen wrote:
    How your CD appears in iTunes depends on the column selections. In list view in iTunes, select the column to the left of the track names to see the CD track order. To see the actual order of the tracks on the CD, open the CD in Finder by double-clicking the CD on the desktop. The tracks will be preceded by a number corresponding to their order on the CD and that is the order they should play in your CD player. If you use the Finder's list view, your CD should reflect the order in the playlist you burned it from.
    Play the CD in your CD player? Does the order match the original playlist?
    Nope, when I put it in my car CD player the tracks are randomized. On the playlist I can put the tracks in the order that I wanted them in and when I burn them iTunes randomizes the order on the cd. I've burned it 4 more times and each time the tracks have been randomized. This is also with a cd that I bought from the ITS. So the playlist is in track order and I even checked the tags and the numbers are in the correct order.

  • Hello everyone. I have my itunes account for some years, and i've purchased far too many apps and music. Now the company i work for, has to change my account in the iphone, in order to use the corporate mails and calendar. How can i keep my applications?

    Hello everyone. I have my itunes account for some years, and i've purchased far too many apps and music. Now the company i work for, has to change my account in the iphone, in order to use the corporate mails and calendar. How can i keep my applications and music?

    Read here:
    http://support.apple.com/kb/ht5621
    Changing your Apple ID to your current, working email address will not create another Apple ID, it will only change it to your working email address.

  • Change only material qunatity in sales order by using BAPI

    Hi All,
    How to change only the material quantity in existing sales order by using BAPI.
    Please help me in this regards.
    Regards
    Deekshitha.

    Hi
    See the sample code and do accordingly
    REPORT Z_SALES_ORDER_CHANGE
    NO STANDARD PAGE HEADING
    LINE-SIZE 132
    LINE-COUNT 65(0)
    MESSAGE-ID ZZ.
    TABLES: VBAP.
    DATA:
    V_FILEIN(90) TYPE C,
    V_RECIN TYPE I,
    V_RECVBAP TYPE I,
    V_RECORDER TYPE I,
    V_VBELN LIKE VBAP-VBELN,
    ORDERHEADERINX LIKE BAPISDH1X.
    DATA: BEGIN OF I_ORDERS OCCURS 0,
    VBELN LIKE VBAK-VBELN,
    POSNR LIKE VBAP-POSNR,
    BRGEW(18) TYPE C,
    VOLUM(18) TYPE C,
    END OF I_ORDERS.
    DATA: BEGIN OF I_OUTPUT OCCURS 0,
    VBELN LIKE VBAK-VBELN,
    POSNR LIKE VBAP-POSNR,
    GEWEI LIKE VBAP-GEWEI,
    BRGEW LIKE VBAP-BRGEW,
    VOLUM LIKE VBAP-VOLUM,
    CKWGT TYPE C,
    CKVOL TYPE C,
    END OF I_OUTPUT.
    DATA: BEGIN OF ORDERITEMIN OCCURS 0.
    INCLUDE STRUCTURE BAPISDITM.
    DATA: END OF ORDERITEMIN.
    DATA: BEGIN OF ORDERITEMINX OCCURS 0.
    INCLUDE STRUCTURE BAPISDITMX.
    DATA: END OF ORDERITEMINX.
    DATA: BEGIN OF RETURN OCCURS 0.
    INCLUDE STRUCTURE BAPIRET2.
    DATA: END OF RETURN.
    DATA: BEGIN OF BAPIRETURN OCCURS 0.
    INCLUDE STRUCTURE BAPIRET2.
    DATA: END OF BAPIRETURN.
    PARAMETERS:
    P_PATH(45) TYPE C DEFAULT '/usr/users/ftpsapom/' LOWER CASE,
    P_FNAME(32) TYPE C DEFAULT '/sweetjo.txt' LOWER CASE.
    START-OF-SELECTION.
    CONCATENATE PATH AND FILE NAME INTO ONE VARIABLE
    CONCATENATE P_PATH P_FNAME INTO V_FILEIN.
    OPEN DATASET
    IF V_FILEIN IS INITIAL.
    MESSAGE E002 WITH 'FILE' V_FILEIN 'DOES NOT CONTAIN ANY DATA!'.
    ELSE.
    OPEN DATASET V_FILEIN
    FOR INPUT
    IN TEXT MODE.
    IF SY-SUBRC = 0.
    READ DATASET
    DO.
    READ DATASET V_FILEIN INTO I_ORDERS.
    IF SY-SUBRC = 0.
    APPEND I_ORDERS.
    ELSE.
    EXIT.
    ENDIF.
    ENDDO.
    CLOSE DATASET
    CLOSE DATASET V_FILEIN.
    IF SY-SUBRC <> 0.
    MESSAGE E002 WITH 'ERROR - CLOSING' V_FILEIN.
    ENDIF.
    ELSE.
    MESSAGE E002 WITH 'ERROR - COULD NOT OPEN' V_FILEIN.
    ENDIF.
    ENDIF.
    SORT AND REMOVE DUPLICATES FROM I_ORDERS
    SORT I_ORDERS BY VBELN POSNR.
    DELETE ADJACENT DUPLICATES FROM I_ORDERS.
    POPULATE I_OUTPUT
    LOOP AT I_ORDERS.
    SHIFT I_ORDERS-POSNR LEFT DELETING LEADING SPACE.
    CONCATENATE '0' I_ORDERS-POSNR INTO I_ORDERS-POSNR.
    SELECT SINGLE BRGEW VOLUM
    FROM VBAP
    INTO (VBAP-BRGEW, VBAP-VOLUM)
    WHERE VBELN = I_ORDERS-VBELN
    AND POSNR = I_ORDERS-POSNR.
    IF SY-SUBRC = 0.
    IF VBAP-BRGEW = 0.
    I_OUTPUT-CKWGT = 'X'.
    ENDIF.
    IF VBAP-VOLUM = 0.
    I_OUTPUT-CKVOL = 'X'.
    ENDIF.
    I_OUTPUT-VBELN = I_ORDERS-VBELN.
    I_OUTPUT-POSNR = I_ORDERS-POSNR.
    I_OUTPUT-GEWEI = 'ST'.
    I_OUTPUT-BRGEW = I_ORDERS-BRGEW.
    I_OUTPUT-VOLUM = I_ORDERS-VOLUM.
    APPEND I_OUTPUT.
    CLEAR: I_OUTPUT.
    ENDIF.
    V_RECIN = V_RECIN + 1.
    ENDLOOP.
    POPULATE BAPI DATA AND RUN BAPI
    CLEAR: ORDERHEADERINX, ORDERITEMIN, ORDERITEMINX,
    RETURN, BAPIRETURN.
    REFRESH: ORDERITEMIN, ORDERITEMINX, RETURN, BAPIRETURN.
    ORDERHEADERINX-UPDATEFLAG = 'U'.
    LOOP AT I_OUTPUT WHERE CKWGT = 'X' OR CKVOL = 'X'.
    V_RECVBAP = V_RECVBAP + 1.
    IF I_OUTPUT-VBELN <> V_VBELN AND SY-TABIX <> 1.
    V_RECORDER = V_RECORDER + 1.
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
    EXPORTING
    SALESDOCUMENT = V_VBELN
    ORDER_HEADER_INX = ORDERHEADERINX
    TABLES
    RETURN = RETURN
    ORDER_ITEM_IN = ORDERITEMIN
    ORDER_ITEM_INX = ORDERITEMINX.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
    WAIT = 'X'
    IMPORTING
    RETURN = BAPIRETURN.
    WRITE OUT RETURN
    LOOP AT RETURN.
    WRITE: / RETURN.
    ENDLOOP.
    WRITE: / BAPIRETURN.
    SKIP.
    CLEAR: ORDERITEMIN, ORDERITEMINX,
    RETURN, BAPIRETURN.
    REFRESH: ORDERITEMIN, ORDERITEMINX, RETURN, BAPIRETURN.
    ENDIF.
    ORDERITEMIN-ITM_NUMBER = I_OUTPUT-POSNR.
    ORDERITEMIN-UNTOF_WGHT = I_OUTPUT-GEWEI.
    IF NOT I_OUTPUT-CKWGT IS INITIAL.
    ORDERITEMIN-GROSS_WGHT = I_OUTPUT-BRGEW.
    ORDERITEMINX-GROSS_WGHT = 'X'.
    ENDIF.
    IF NOT I_OUTPUT-CKVOL IS INITIAL.
    ORDERITEMIN-VOLUME = I_OUTPUT-VOLUM.
    ORDERITEMINX-VOLUME = 'X'.
    ENDIF.
    APPEND ORDERITEMIN.
    ORDERITEMINX-ITM_NUMBER = I_OUTPUT-POSNR.
    ORDERITEMINX-UNTOF_WGHT = 'X'.
    ORDERITEMINX-UPDATEFLAG = 'U'.
    APPEND ORDERITEMINX.
    V_VBELN = I_OUTPUT-VBELN.
    ENDLOOP.
    RUN BAPI ON LAST ORDER
    IF NOT ORDERITEMIN IS INITIAL.
    V_RECORDER = V_RECORDER + 1.
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
    EXPORTING
    SALESDOCUMENT = V_VBELN
    ORDER_HEADER_INX = ORDERHEADERINX
    TABLES
    RETURN = RETURN
    ORDER_ITEM_IN = ORDERITEMIN
    ORDER_ITEM_INX = ORDERITEMINX.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
    WAIT = 'X'
    IMPORTING
    RETURN = BAPIRETURN.
    WRITE OUT RETURN
    LOOP AT RETURN.
    WRITE: / RETURN.
    ENDLOOP.
    WRITE: / BAPIRETURN.
    SKIP.
    ENDIF.
    WRITE OUT RECORD COUNT FROM FILE
    WRITE: / 'RECORD COUNT FROM FILE ', V_RECIN.
    SKIP.
    WRITE OUT RECORD COUNT FROM FILE
    WRITE: / 'RECORD COUNT OF LINES TO CHANGE ', V_RECVBAP.
    SKIP.
    WRITE OUT RECORD COUNT FROM FILE
    WRITE: / 'RECORD COUNT OF ORDERS TO CHANGE ', V_RECORDER.
    SKIP.
    TOP OF PAGE
    TOP-OF-PAGE.
    WRITE:/1(5) TEXT-H01, 6(8) SY-DATUM MM/DD/YY,
    100(8) TEXT-H02, 126(8) SY-PAGNO.
    WRITE:/1(5) TEXT-H03, 6(8) SY-UZEIT USING EDIT MASK '__:__:__',
    20(77) TEXT-H04,
    100(8) TEXT-H05, 108(25) SY-REPID.
    WRITE:/1(6) TEXT-H06, 8(12) SY-UNAME,
    20(4) TEXT-H07, 25(32) SY-HOST,
    100(13) TEXT-H08, 121(8) SY-SYSID,
    129 '/', 130(3) SY-MANDT.
    ULINE.
    SKIP.
    Reward points if useful
    Regards
    Anji

  • Process order change pointers - not getting logged

    Hi,
    I have defined change pointers for Process order for one custom message type in BD52 (and BD50 as well.). I have included AFKO, AFPO and AUFK tables (e.g. fields like KEY, GAMNG).
    But no change pointers are getting logged when ever I create or change a process order through COR1/2.
    Am I missing something?.. (and yes Change pointer are active 'Globally'.)
    Thanks.

    hi,
    generally change pointers (table: BDCP) are saved during change document creation (table CDHDR),
    but due to performance reasons this funcionality was switched off...
    see oss note 390635...
    I think, if you want - you must write own code in which change pointers will be created,
    look at these function modules, should be helpful:
    ORDER_WRITE_DOCUMENT
    CHANGEDOCUMENT_CLOSE
    CHANGE_POINTERS_CREATE_LONG
    regards, darek

  • Change track order

    For some reason when I dowloaded an audio book, the trracks are in the wrong order.  What is the fastest way to get them in the correct order.  The Chapter names are not alphabetical so I would like to click and drag the tracks within an album to change the order of the tracks in my music library?  I don't just want this order on my nano, I want the correct order within the album.  Thansk, Gina  (going into each "Get Info" takes too long.)

    View > View Options.  When the View Options box comes up, set "Sort by" to "Manual Order."
    Once this is done, you will be able to move songs up or down by drag-n-drop.

  • Changing track order after importing

    I am trying to import opera CDs into my iTunes library. Operas usually take up 2 or 3 CDs, and when I try to upload the multiple CDs to my library, iTunes mixes up the order of the tracks so that I can't listen to the opera in order. How do I change the order of the tracks in the iTunes library so that I can listen to the opera in order?

    Try this, I found that it works for me. Right click at the top of any column in your iTunes library and choose **Track Number** from the list. Click at the top of this new column to sort it and after that click on the Album by year column. If you like you can then click on Artist, it will continue to hold the track order as well. Afterwards anything you import should follow this arrangement Track Number>Album>Artist. Make sure the little triangle on the right side of the track number column header is pointing up. In that direction the column is sorted in Ascending order (lowest to highest).

  • Track Order Sudenly Changed

    The track order on many of my albums suddenly changed from the track order to alphabetical. This happened after I converted some albums to MP3. I have checked the box in iTunes Preferences for maintaining the track order with no reult. On some, I have manually added track number, with no reult. I'd appreciate any help on this. I have OX10.3.9 and iTunes 6.0.4(3).

    Take a look on top of the different columns: The tracks will be sorted by that column which is selected=highlighted

  • Changing track order?

    i got itunes 7, played around with it for a bit, and ejected my ipod, to find that one song from each of the albums of the artist I was listenign to had been moved randomly to a different spot in the album order. All these songs have track listings set in the "get info" page. i noticed that the track order would change based on whether i was browsing by artist or by album, which should not happen, and then, after clicking "get info" it would correct itself. Is this a bug? I don't look forward to plugging my ipod back in, and fixing the track orders throug itunes every time I want to play my music through my computer speakers. Also, it seems to "determine gapless playback" for every song on my ipod any time i transfer any music to it. any way i can tell it not to do this..its a very time consuming process... thanks

    It looks like you are not the only one. How frustrating.
    Here's two posts with the same problem, but no fix.
    http://discussions.apple.com/thread.jspa?threadID=671794&tstart=0
    http://discussions.apple.com/thread.jspa?messageID=3351085&#3351085
    Custom AMD 64   Windows XP  

  • I am trying to set my background setting to change when ever I log in, I clicked on both 'change picture' and 'random order' boxes as my settings, but when ever I log in it has the same background as before. Does any body know how to fix this?

    am trying to set my background setting to change when ever I log in, I clicked on both 'change picture' and 'random order' boxes as my settings, but when ever I log in it has the same background as before. Does any body know how to fix this?

    You have to enter the Apple ID and password. You are running into the Activation Lock
    iCloud: Find My iPhone Activation Lock in iOS 7
    Is there a way to find my Apple ID Name if I can't remember it?
    Yes. Visit My Apple ID and click Find your Apple ID. See Finding your Apple ID if you'd like more information.
    How do I change or recover a forgotten Apple ID Password?
    If you've forgotten your Apple ID Password or want to change it, go to My Apple ID and follow the instructions. SeeChanging your Apple ID password if you'd like more information.

  • Track order changed when copying playlist to memory stick!

    Help!! Everytime I try to copy a playlist to a memory stick by highlighting and dragging the track order gets completely jumbled and it's driving me nuts!!! How do I prevent this from happening??!! Thank you for any responses to this question!

    You cannot.
    The playlist is sorted on any column in iTunes or by simply dragging the songs up/down as you want.
    When you view the songs on the memory stick in Windows Exploder, it sorts by the column you are sorting on (filename is default).
    You would need to add a track number of the playlist order to the filename to keep them in order.

Maybe you are looking for

  • W510 Docked in 433820U Port Replicator USB Ports Occassiona​lly Stop Working

    Has anyone had the problem where the USB ports on the 433820U Port Replicator stop working? I've had it happen on several occassion where the USB ports on the port replicator stop working when I do something seemingly unrelated (e.g. unplugging a CAT

  • SAPScript Page

    Hi everyone,   I want to develop a general invoice form which include the header and line item.  If the line items cannot be display within one page. Then, those records will then be displayed in subsequence page.  Can i do this with one PAGE Sap Scr

  • Active Directory Ghost Object replication issue

    I have a Windows 2003, Single Forest with nearly 50 Domains. This is a constantly changing, deployable system where not all Domains are connected and online at all times. Some months ago 2 of these domains were held up in transit and tombstoned. Befo

  • Aperture file issue

    Dear Kirby, reading some of your threads, I am very impressed by your knowledge about special issues concerning "Aperture", and would be most obliged to you, if you could possibly help me with a suggestion with regard to the below issue: I just retur

  • On Mac Lion Use FB 4.5.1 with 3.6 SDK - known issues?

    I'm on Mac OS 10.7, Lion. I recently downloaded and install FB 4.5.1 and imported my Flex3 project. I selected SDK 3.6 for compatibility (not ready to recode for Spark/4.5). Is 3.6 fully supported under FB 4.5.1? For instance, in the design viewer, a