Display changes done for reservation

Hi Guys
I have client requirement as below
They  need to view changes done for reservation
Can any boy help on this
Thanks in Advance
SAP MM

Dear,
We have this requirement and we raised OSS to SAP also on this.
Reservation changes cannot be tracked in SAP system due to least importance it has. One work around through ABAP development but its not supported by SAP due to abnormal increase in data volume of change recording in data base which impacts system performance.
For this we, go with authorization matrix by which remove MB22 authorizations from all users and make one super user like concept. Means one plant only one user has authorizations for MB22 for which he can change the reservation. He get instructions whenever any user want to change reservation - must shoot a mail to all concerning inventory team before he changing with MB22.
Regards,
Syed Hussain.

Similar Messages

  • Changes done for sap user details

    Hi All,
    I need to know a standard transaction code or FM;
    which can give the information on the modifications/changes done
    for the sap user's first name; last name and e-mail id.
    Any help will be appreciated.
    Thanking you all in advance.

    Hi Kanagaraja,
    I really appreciate you inputs, it will definitely have entries posted by BAPI.
    But the requirement I have is little different.
    I will have some person changing the user information manually,
    I need to go somewhere and find out whether the person has made the
    changes in user's first name, last name or e-mail id.
    So, I am looking out for some FM or table or even standard t-code where
    I could find the changes done, and change log lately.
    Thanks and Best Regards

  • Retive the changes done for materials in perticulare plant

    Hi Friends,
    i want to pull the changes done for materials in perticular plant
    for specific USER in a view.
    mean .. what the USER was changed for that meterials in plant.
    regards,

    Hi,
    Use CDHDR and CDPOS table.
    Thanks,
    Sen

  • Sap Banking - Display change documents for accounts

    Hello,
    Can anybody help me? I need to write a report that shows all the change documents for a range of accounts, and I don't know how to retrieve this info. I know that there's a table BCA_CN_LINK that storages what object type was modified and by whom. But I don't know in which table the old and new data is stored for each change document.
    Any idea is welcome!!!
    Thanks a lot.
    Regards, Marcela Sanchez

    You can see the change documents for a single account vía transaction BCA_CN_ACCT_03 (Account Management -> Account -> Account Master Data -> Display Account) and then click the ChangeDocuments Account pushbutton

  • Table cntrol field to be display/Change only For each record

    Hi all,
    How to set a particular Field in table control either as display only or
    change only for <b>each row</b> based on certain condition.I need to set this property for each record in table control not for the entire coloumn?.I know the procedure for setting up an entire coloumn in table control either as diplay or change only using <b>Loop at screen</b> statement.
    Conditions:
    If Material is batch managed:
    itab-batch field has to be <b>Display only</b> mode.
    if material is not batch managed:
    itab-batch field has to be <b>change mode</b>.
    <b>O/p of Table Control :</b>
    Material     Batch
    1000         Display only
    2000        Change only
    8000        Change only
    3500        Display only
    3600        Display only

    Hi Ravi,
              Thanks for your reply.I have put the code as u said. It is modifying the whole coloumn insted of  modifying Current row of the coloumn.
    I have tried to modify the screen property using  Table control attributes (TC-COLS).The following commented code is that logic.Even that also doing the same thing.Can yoy please tell me how to do it.
    MODULE tc_get_lines OUTPUT.
    LOOP AT SCREEN.
        IF screen-name = 'X_ZPINV-CHARG'.
          IF fg_batch = ' '.
            screen-input = 0.
          ELSE.
            screen-input = 1.
          ENDIF.
        ENDIF.
        MODIFY SCREEN.
      ENDLOOP.
    LOOP AT tc-cols INTO tc_wa
      WHERE screen-name = 'X_ZPINV-CHARG'.
       IF x_zpinv-matnr IS NOT INITIAL.
         CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
           EXPORTING
             input  = x_zpinv-matnr
           IMPORTING
             output = v_matnr.
         SELECT SINGLE * FROM marc WHERE matnr = v_matnr
         AND werks = w_plant.
         IF marc-xchar IS INITIAL.
           tc_wa-screen-input = 0.
         ELSE.
           tc_wa-screen-input = 1.
         ENDIF.
         MODIFY tc-cols FROM tc_wa INDEX sy-tabix."    transporting screen-input
       ENDIF.
    ENDLOOP.
    ENDMODULE.                    "TC_GET_LINES OUTPUT

  • Change Documents for Reservation

    Hi Masters
        How to find the change documents for the reservation?.I have Checked it in MB22 and tables CDHDR and CDPOS.I found nothing.Is there any other T code for finding this?
    Regards
    Mohan

    Hi
    Thank you for your reply
    I checked with the Tcode TLR5.I have given user name only and i am not getting the change documents.Could you please tell me what i am missing?
    Regards
    Mohan

  • Displaying change documents for custom fields  in FPP2

    I have added a new subscreen to the Business partner via BUPT. The new fields are on a custom table. I have created change documents for the new fields and all that is working fine - details are being written to CDHDR/CDPOS as expected. In the standard FPP2 transaction the user can select Extras / Partner changes which will display a list of the change documents. This does not include my custom fields.
    Does anyone know if it is possible to include my custom field changes in this list? I have searched several forums but cannot find any reference to this.

    Hi,
    Fix a break-point in the following function modules and check whether you are passing custom fields
    CHANGEDOCUMENT_SINGLE_CASE
    or
    CHANGEDOCUMENT_MULTIPLE_CASE
    SAP uses the above said function modules to update change documents. Its have two import paratmeters
    WORKAREA_OLD
    WORKAREA_NEW 
    or
    TABLE_OLD          
    TABLE_NEW 

  • Transaction to have the Report displaying changes done in the Vendor master

    Hi Team,
    We have done some changes in the Vendor master for examle Vendor  currency and Payment terms.
    is there any transaction which will give the Changed list of Vendors with user details ,date and with old 
    and
    New values.
    Regards,
    Adinath Raykar

    xk04
    you have to choose from menu ENVIRONMENT to get a list for many vendors at once
    Edited by: Jürgen L. on May 18, 2009 11:40 AM

  • Display changes done instantly in tableview

    Hi all,
      I have a requirement wherein i am filling the comments which i am collecting in textedit field and when i click on save it gets saved in database and In the same page itself i have a tableview containing a column of that comments field.
    I am able to save the comments in database, but as it is dont in Oninputprocessing, it displays the change in tableview only when we execute the program again. I want to display the changes in tableview as soon as the save button is clicked. I have similar requirement for some editable fields in tableview also.
    How can i do that???
    Regards,
    Rohit Khetarpal

    I believe you are filling the tableview in <b>Oncreate</b>. Instead, try to fill onInitialization.So when you 'Save', DB gets updated & control comes to Oninitialization it will get the modified data.
    Or you can refill the Tableview data after saving successfully.
    Raja T

  • How to find changes done for a table

    Hi All,
    We have a customized trasparent table , for which  table log is not maintained. There is a change in data for this table and we want to find out who has done the changes and when .
    We are using SAP R/3 4.6c with Oracle 8.1.7
    Please let us know if there is any way to sort this out .
    Regards,
    BN

    Hello Nayak,
    as you told us that it is a customizing table .. there should not be many changes.
    If you don't activate the table log ... then you can only go over the logminer of oracle (it is much easier, if you know a timeframe in which the data maybe changed):
    http://www.oracle-base.com/articles/8i/LogMiner.php
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/dynviews_1154.htm#i1408263
    => TIMESTAMP
    => TABLE_NAME
    => SESSION_INFO
    => SQL_REDO
    => SQL_UNDO
    You will not see which user has done the change but you will find the abap program and with that information you can go to ST03n and have a look which user called this program.
    Regards
    Stefan

  • Display change log for Notes in Appraisal

    Hello,
    Can some one let me know by doing what settings in Appraisal Catalog one can have the change log being displayed for the Appraisal Notes.
    Thanks,
    Vishwanath

    Hello,
    Thats a tricky part.
    Use Note as " Note can no longer be changed" in template configuration.
    You get User/Date/Time of note.
    I guess that helps you.
    Also, Iguess it will work if you have sap delievered standard UI.
    else you need to read the values manually and adjust layout.
    Thanks&Regards,
    Narendra N Shukla

  • Table to display change logs for transaction VK13 with certain condition.

    Hi ,
    Please let me know if there is any table from which we can get the change log details of condition records with transaction VK13
    This is required to get information on old value and new updated value for the condition.
    Thanks
    Ravi Naik

    Hi,
    Use the program RV16ACHD (You can run this in SE38)
    View the code from there for more understanding.
    Tables are
    KONH, KONP and CDHDR
    In the CDHDR table you can view condition record changes under, Change doc. object = COND_A
    Anotehr option is to use the function module SD_CONDITION_CHANGE_DOCS_LOAD which is called in the program RV16ACHD and pass the correct parameters.
    Best regards,
    Anupa

  • Changes done for the Site in the BCC are not reflecting in the Production

    Hi,
    we are using ATG10.0.2 BCC, application is based on CRS10.0.2
    changing the asets for a site in BCC and deployed success fullly changes are there in the BCC but those are not affecting in production
    In Production configuration of BCC i mapped Source Repository atg/multisite/SiteRepository with Destination Repository: atg/multisite/SiteRepository_production
    please help me to reslove this issue
    Thanks,
    Chandrakanth

    How about checking this?
    Login into the DB and see if you have values changes getting reflected in the CA DB and prod DB.
    If values are getting reflected in the DB then clear the cache of the repository.
    If the values are not getting reflected in prod db then check the datasource property of that repository.
    Peace
    Shaik

  • How to check changes done in close in period.

    Hi
    How to check the changes done for closeing period ( mmpv ).
    Thanks
    Prashant
    Edited by: Prashant U. Maid on Dec 5, 2008 5:28 AM

    Hi
    You can check thru T.code MMRV the peroid status.If you need to see what are the changes and how has made the changes then go to T.code se11  and check the entries for the table MARV( Material Control Record ) for the desired company code.
    Client
    Company Code
    Fiscal Year of Current Period
    Current period (posting period)
    Fiscal year of previous period
    Month of previous period
    Fiscal year of last period of previous year
    Last month of previous year
    Allow Posting to Previous Period (Backposting)
    Indicator: Disallow backposting after a change of period
    Name of Person Who Changed Object
    Date of Last Change
    Time
    Indicator: Initialize company code
    Fiscal year of period before last
    Month of period before last
    Fiscal year of last period of year before last
    Last period of year before last
    Fiscal year of 1st period with dynamic closing
    1st period with dynamic closing
    Fiscal Year of 1st Period After 4.6C Upgrade
    1st Period After 4.6C Upgrade
    Regards
    suny

  • User exit to be triggered for PR05 when click on display/change/create

    Hi,
    If there a user exit or BADI that is triggered when I click on display / create / change a respective line of trips in transaction code PR05? I tried the following user exit but non is triggered when i click on the said button ( display / change / create ).
    - FITR0001
    - FITR0002
    - FITR0003
    - FITR0005
    What i'm trying to achieve here is to default the Trip type based on the cost centre / WBS Element assigned for that particular trips. I highly appreciate for any feedback / help on this.
    Cheers,
    Loo

    >
    ~loObie wrote:
    > Hi Chandra,
    >
    > Say when i choose the WBS Element say 'INT-0001' i want to auto-populate the Trip Type to 'C', i don't think user exit FITR0003 & FITR0005 will be triggered as i've tested that earlier unless i've missed something.
    >
    > As i have 2 requirements here :-
    > 1. To default the trip type when I choose a particular WBS Element on the screen
    > 2. If the TTy.E type is set to 'C' then i would like to allow only the chargeable exp types codes to be booked. For this, i know i can use user exit FITR0003 or FITR0005.
    >
    > I wonder if there's any other BADi or user exit that i've missed for requirement 1 ?
    >
    > Cheers,
    > Loo
    Hi Loo,
        There are no BADI or user exits for for requirement 1 . I suggest you to go for implicit enhancement options to default trip type .
    Thanks and Regards,
    S.Sivakumar

Maybe you are looking for

  • Deleted Table in SQL and DBML still remained relation !!!!

    Hi Dear Experts I've faced the serious problem please help me :( ! I've deleted a table from SQL database and also dbml and i created new table instead Also in Store Procedure the new table is used I've checked that the old table has completely remov

  • Libraries for SIM card toolkit

    Hi, If I want to write a Java applet for a smart card I need the Jar files from the Java Smart Card dev kit (like javacardframework.jar etc) since they implement the Java Card APIs. If I want to write a Toolkit applet where do I get the Jar files (li

  • Sap Query Link Tables

    Hi, I badly need your help.. How can I link Table LIPS to VBEP using SAP QUERY? I have join these two tables using key field VGBEL = VBELN and VGPOS=POSNR but database access takes too long.. I need to get Schedule line delivery date(VBEP- EDATU ) wh

  • Can you use AirPrint without a computer

    I found out that there will be no printer in the Paris apartment we will be using, but there is wifi.  We will have need of a printer, and would bring one, but don't want to bring our laptops.  We just want to use ipads and iphones this trip, but wou

  • Can't find the feedback button

    I'm running aurora and recently noticed the "firefox makes me sad" button is missing from my toolbar. When I customize the toolbar I don't see the button as an option in there either.