History of Resevation change

Dear All
I want to know about history of reservation change. What of Tcode to display history of reservation change
Would you like help me, please
thanks
imron

Hi,
within the standard transaction, the requiered function
is not provided. However, you can achieve what you desire through the
enhancement MBCF0007.
Please, have a look at the documentation of the enhancement MBCF0007
with transaction SMOD. You will be able to see the following
information:
The enhancement MBCF0007 comprises a function module that is called up
when you post a reservation with the transactions MB21 and MB22.
It makes the following reservation data available for further
processing:
o   TI_RKPF
    Contains the current header data of the reservation
o   TI_RESB_NEW
    Contains items that have been newly created and changed
o   TI_RESB_OLD
    Contains all of the reservation items in their original status
o   TI_DM07R
    Contains additional data for the items (for example, short texts)
I hope this helps you
BR
Nadia Orlandi

Similar Messages

  • Table stores the history of  material change

    Hi, expert,
    please kindly tell me which table stores the history of material change(MM04 is inconvenient).
    Regards,
    David

    I think your requirement availble in this table
    T005T      Country Names
    T134T      Material Type Descriptions
    T606R      Legal Control: Legal Regulation Descriptions
    T685T      Conditions: Types: Texts
    TCURM      Customizing: MM Configuration
    TSKMT      Taxes: Materials: Texts
    by
    prasad

  • History of all changes in application by employee.

    hi
    i want to keep all record or history of all click or changes in application .Which have done by employee.
    How can i do this.
    Thanks
    Manoj

    Hi,
    I hope these help you at start.
    http://www.java2s.com/Code/Oracle/Trigger/Logandauditdatachange.htm
    http://www.dba-oracle.com/t_audit_table_command.htm
    Br, Jari

  • Best way to keep a 'history' of cache changes?

    Simple question, really, which I guess many people have run into before, so I'm looking for a bit of 'best practice' as regards Coherence.
    We have a distributed cache which is holding financial data (Portfolio Positions), and we plan to update these using Entry Processors for scalability (as a single incoming Trade could affect multiple Positions, so we want them processed in parallel). So far, so good. (I hope! If you have a better approach, please feel free to add it. :))
    Now, each Position that is modified needs to be 'audited', so we have a 'before' and 'after' image. This needs to be persisted. I have currently created a separate cache - 'PositionHistoryCache' - and set it up so it's flushed to Oracle in a "write behind" manner. This seems to work OK - i.e. updating this 'other' distributed cache from within the Entry Processor works fine. Does this seem sensible as an approach as regards keeping 'history' - i.e. using a separate cache and 'put'ing to it?
    Also, I'm keen not to run into any 'reentrancy' problems in our application. So what's the general rule here, when we are using Entry Processors elsewhere? Is it simply the 'service name' that determines whether the distributed caches are served by different service threads? In other words, as long as the 'history' cache we are trying to talk to is declared with a different 'service-name' to the cache that has the calling Entry Processor we can freely 'put' to it without issue?
    Many thanks if you can help clear up the above design issues.

    Hi Steve,
    yes, the (possibly inherited) service name for the cache scheme determines which cache service a cache belongs to.
    As for best practice, you probably would want to use key-affinity and the cache same service for the audit cache and try to put the data into the backing map directly. Since this is inserts and child records we are speaking about (access to the audit record is demarcated by access to the to-be-audited record, and if you do it from an entry-processor then the audit entry is always local because it is affine to the to-be-audited entry), it should be safe, provided that you only ever insert/update the audit entry into the backing map from entry processors manipulating the parent entry.
    You would still have the same failure cases as the different cache service cache.put approach: if you crash after the audit record has been inserted but process did not finish, then you may end up with lost but audited updates or duplicate audit records for a single change.
    Note that this is an advanced functionality and you would probably want to consult with your Oracle support representative to ensure that you know the implications this approach brings with itself with each Coherence version you try to use it with.
    An alternative approach would be to move audit into the same cache as the record and use key affinity to ensure audit records reside on the same node as the audited record, and use EntryProcessors sent to both the changed and the audit entry keys together to update both records together atomically. This is a much safer approach, it is guaranteed to be atomic as long as only the cache is concerned, on the other hand you need to know the audit entry key in advance and use the key-based invokeAll method (you can't use the filter-based invokeAll method as that cannot add new entries). Also you have additional work if you use filter-based read operations to filter out audit records from query results.
    Best regards,
    Robert

  • Changes history of characteristics changes in Sales Order

    Dear all ,
    I have question regarding changes history. If I enter Sales Order using configurable material, and have entered all the characteristics value. Subsequently I go back to the same sales order and change some of the characteristics value, where do I can see the changes history of the characteristic values that I have changed? I go to display the changes history of sales order or go to see in CDHDR or CDPOS tables, but I can not find the changes history of characteristic values there. Kindly advice
    Thanks alot,

    Did you ever find a solution for this?  We have a similar requirement where we need to see the change history for our batch master characteristics.

  • History of name change

    i really need some help.. is there any way possible to see my name change history? like when i change my name to what.

    Hi ,
    I know this table. I need change history table. Suppose we make any changes in WBS master data  using CJ12 tcode, these chage history like old value and new value  stored in some table.
    Thanks
    Sudarsana Reddy

  • Keep history pl-sql changes

    I want to keep history of pl-sql changes
    I have already found an example..
    CREATE TABLE SOURCE_HIST -- Create history table
    AS SELECT SYSDATE CHANGE_DATE, USER_SOURCE.*
    FROM USER_SOURCE WHERE 1=2;
    CREATE OR REPLACE TRIGGER change_hist -- Store code in hist table
    AFTER CREATE ON SCOTT.SCHEMA -- Change SCOTT to your schema name
    DECLARE
    BEGIN
    if DICTIONARY_OBJ_TYPE in ('PROCEDURE', 'FUNCTION',
    'PACKAGE', 'PACKAGE BODY', 'TYPE') then
    -- Store old code in SOURCE_HIST table
    INSERT INTO SOURCE_HIST
    SELECT sysdate, user_source.* FROM USER_SOURCE
    WHERE TYPE = DICTIONARY_OBJ_TYPE
    AND NAME = DICTIONARY_OBJ_NAME;
    end if;
    EXCEPTION
    WHEN OTHERS THEN
    raise_application_error(-20000, SQLERRM);
    END;
    show errors
    but the select statement doesnt return any row
    SELECT sysdate, user_source.* FROM USER_SOURCE
    WHERE TYPE = DICTIONARY_OBJ_TYPE
    AND NAME = DICTIONARY_OBJ_NAME;

    Looks to me like the names were changed in 9i.
    8i guide shows SYSEVENT,
    LOGIN_USER, INSTANCE_NUM, DATABASE_NAME, DICTIONARY_OBJ_TYPE, DICTIONARY_OBJ_NAME, DICTIONARY_OBJ_OWNER
    as available.
    This PSOUG page shows variables ora_sysevent, ora_dict_obj_owner, ora_dict_obj_name being used.
    The 9i App Dev Guide Ch 16 shows the new names.
    So change DICTIONARY_OBJ_NAME to ORA_DICT_OBJ_NAME etc and you should be good to go. Shows you that you have to check information you find on Google!
    HTH
    Regards Nigel

  • History of SDK changes and patches

    Is there a document that lists SDK patches and updates to the SBO 2007A SDK? I need to know what patches of the SDK have been released and what changes were addressed.
    Thanks

    Hi Peter,
    The document you need is available from the "info" link in the download center. It details all changes to the the application as well to the DI/UI API.
    Regards,
    Vítor Vieira

  • Dictionary table showing history of parameter changes ... fact or fiction?

    Guten Tag
    I understand there is a dictionary table/view/object that tracks changes to database parameter values but I can't seem to be able to find it.
    A co-worked mentioned that information is available in OEM so I figured there must be a table somewhere that is storing it.
    Any thoughts or documentation references are most welcome.
    Thanks very much!
    -gary

    >
    I assume the SNAP_ID in that table must be a reference to an AWR snap of database information?
    >
    Why assume? Not the definitive source but see this blog about the dba_hist tables
    http://it.toolbox.com/blogs/living-happy-oracle/oracle-the-dba_hist-tables-30168
    >
    The information in most of the DBA_HIST tables corresponds to the AWR snapshots (the SNAP_ID column tells us to which snapshot the information is relevant to) so they are populated with new information when a snapshot is taken and old information is purged along with the AWR snapshot according to the AWR retention settings.
    >
    The last bullet point in the article may answer your initial question. This is just the start - there is also a query you can use
    >
    ■Did you ever wonder if someone had changed a system parameter and did not inform you? No more, the DBA_HIST_PARAMETER keeps system parameter information for all snapshots and helps the DBA track any parameter.

  • How to check history what been changed in WBS/Network

    Good Day,
    PLease advice, is there any standard report or tcode to check who change the settlement rule whether in Network or WBS.
    I have tried CN60 and KOSRLIST_PR and also table CDHDR but i cannot find who change and what kind of changes user did in a network or WBS.
    Cheers,
    Nies

    Hi Anjali,
    We already maintained change documents in project profile. But the settlement rule changes still cannot be find.
    Change document creation allowed
    Use this indicator to specify that change documents should be created for all basic data in the work breakdown structure.
    Dependencies
    The system only creates change documents when the business transaction "Create change documents" is allowed in status management and the work breakdown structure has already been released.
    Note that response times are extended if you set this indicator.
    Note
    Changing the indicator in the project profile affects all existing project definitions and WBS elements.
    Cheers.

  • Stepping back thru History shouldn't change layers until it needs to

    Hopefully I can explain this behavior clearly. I have "Command + Z" assigned to Step Backward in history to give roughly the same functionality as multiple undo in most any other app on the Mac.
    When I'm doing illustration work in PsCS4, I'll often switch from Layer A to Layer B and make a mark with the Brush Tool. I'll decide I don't like that mark, so I Command + Z to "undo" that first mark made since switching to Layer B. The Step Backward does it's thing and gets rid of the mark as expected, but also switches back to Layer A, instead of remaining on Layer B so I can create a new brush stroke.
    My request is that Step Backward should stay on a Layer until it reaches a point in History where it's "un-doing" something that happened on a different layer. Or another way to put it: Layer Switching should not happen until the instance of Step Backward would be un-doing an event on on another layer.
    Or at least make this a user-defined pref?
    Thanks!

    I encountered this misbehaviour many times myself and would like
    to see it fixed as well.
    For me it happens when pressing alt+ctrl+z after a single brush stroke on a newly switched layer.
    And to replicate this problem I had to create two new empty layers, then switch to the second layer and make a stroke there. After pressing alt+ctrl+Z photoshop removes the stroke and jumps to layer 3.
    Hope it helps to catch the bug.

  • When I customize things like homepage, privacy, history they all change back to Firefox default when I close the browser

    Firefox will not remember my customized options. I set my homepage and privacy options and when I close the browser and reopen, it will be back to Firefox default homepage.

    Sounds like you could have a locked or corrupt preferences file. Try this article for steps to fix that - [[Preferences are not saved]].

  • Change History logs for /sapapo/cdps0

    Hi all,
    Has anyone tried to build a report which can show log of change history; i.e. changes made manually or by system in Detail Scheduling Planning Board? Specific query is if it is feasible to make? Has someone tried to do and what are your general observations; would be great if you can share.

    Hello There,
    I know there is an OSS note that needs to be applied to capture the changes into the C3 log. Pls chk if that helps. I do not have the note # handy.
    Good luck !

  • Authorization to change BOM with history requirements

    Hi Techies,
    I m facing an issue now with respect to authorisation of changing BOM with history requirements. Our quality system was a copy from a production server which was used for CRM before. Usually in SAP when we change a BOM with a change number we cant again change it back without a change number.
    In our case it is not providing an error but it is providing a warning. Now my requirement is to change this warning message to error message. So that people wont change BOM without a change number.
    I tried to enter the transaction SU24 and found the authorizaton C_STUE_NOH with proposal YS. Then i tried to change the filed value to ' ' (NO) and saved it.
    But still i m not able to change the warning message to error message.
    Is there any other setting i need to carry out for this.
    Please help me with this issue.
    Thanking you in advance.
    Regards,
    Kris.S

    Dear Krishu,
    Below has been mentioned in OSS note: 420878. Check once again you have save as NO. Then go to tcode SU03 Object Class PP/ C_STUE_ROH
    Summary
    Symptom
    In Customizing of the BOM, the history requirement is set or a BOM requires a history. Despite this, it is possible to process BOMS without engineering change management. The system only processes a warning message (29 045) which can be skipped.
    Additional key words
    CS02, change number, OS27, W045(29)
    Cause and prerequisites
    Authorization profile
    Solution
    Check the authorization profile of the respective user.
    Example:
             C_STUE_NOH <OBJ>
                &_SAP_ALL    <AUT>
                    NOHIS      <FLD>
    would have the authorization to process BOMs requiring history without a change number. In this case, if you change '*' to ' ' in NOHIS, you will no longer receive a warning, but rather an error message.
    Regards / US

  • Cannot change setting in privacy from remember history to use custom settings for history. I can set in to change but on closing with the ok button thus closing the privacy tab, it then reverts back to remember history.

    I have been by a web sit that the cookies are disabled in the browser. on looking at the help on firefox help the instuction as i understand was to change the setting under the privacy tab ref history fromthe default setting of rember hhistory to use custom settings for history. I change the setting click ok but it reverts back to rember history. I just cannot change the setting.This also happend in the prevous version.

    To see History and Cookie settings in Tools > Options > Privacy, choose the setting <b>Firefox will: Use custom settings for history</b>
    You need to make at least one change to make "Use Custom settings" stay selected.
    If all history settings are the default then the History and Cookie setting revert to "Remember history" the next time you open Tools > Options > Privacy.
    So it looks that your cookie setting are already correct.
    * http://kb.mozillazine.org/Cookies
    * http://kb.mozillazine.org/Websites_report_cookies_are_disabled

Maybe you are looking for

  • Applet works on eclipse but not on reg browser (not inited error)

    Hi everybody, I've just made an applet, but I don't know why it can't be shown. I'm working with Eclipse, and when I run the .java file, everything works fine. It even works fine when I specify parameters through the eclipse build file parameter argu

  • CF10 deployed in JBOSS

    Hi, I deployed CF10 to JBOSS and everytime I need to access the CF admin i need to put cfusion. (eg https://<host>/cfusion/cfde/). even the deployed CF application I need to put cfusion. is there a way my CF application can access without cfusion? e.

  • Returnable Packing report in MM

    Dear SD Experts, I am not a MM Consultant, so please help me. Here is my requirment. I sale Gas such as Oxygen in cylinders. I sale oxygen to a Customers in 5 cylinders. Each cylinder has unique number. Now when I post goods issue I mention the Oxyge

  • I can't open the chat bar in facebook when using Firefox, why?

    Whenever i use Firefox in Facebook, i can't open the chat bar and when i try to click Profile, I still have to confirm it. It's also the same when i try to look at notifications and when i try to log-out. Is there a way to make it stop asking me when

  • Kernel Panic - mac crash

    Hi, my MBP crashed 3 times this week. First I didn't read the problem details. The other/last two which happened last night an this morning mentioned Kernel panic. (Copied all the details down in case that's of any help?) I read the following in an o