Table --Changes - What - Who ?

I tried to close to all the tables including the AGR_CUSTOM trying to determine where Ican find ;
a> Changes onto the roles over period   ( Auth changes -not users added )
d> Who did those changes
can some one...tell me that secret !
Thanks

Hi
If you want to have a look at the "Who" "What" and "When", try transaction RSSCD100_PFCG (you can also find it through SUIM), it will give you the change documents.
Changes to roles are documented in the Change Document tables (CDHDR, CDCLS, CDPOS etc).
Im not quite sure what your requirement are, but if it for reporting purpose, I would allways go for the standard transaction.
Regards
Morten

Similar Messages

  • DVD's from IDVD no longer work in a Blue-Ray DVR for television.  Who changed what and why?

    DVD's from IDVD no longer work in a Blue-Ray DVR for television.  Who changed what and why?

    Hi
    What BRAND of the DVD used ?
    What type of DVD ? SL-DVD-R or DL-DVD-+RW or ?
    Burn Speed ? Did Yo set it down ? I do to x2
    Cleaning DVD disk (not with liquid but the ones with brushes) - I use from time to time ?
    Free Space on Start-Up (Maintosh HD) - How much ?
    Yours Bengt W

  • Table in the Database will be changed, what is impact

    Hi, I'm new to the Forum.
    We have a multiple reports build in the multiple Business arias, One of the Tables in the Database will be changed. My question is what is the best way to use EUL5 to see what impact it will make. I will appreciate any advise.

    When you say one of the tables in the database will be changed, do you mean columns will be added, or are some columns going away, column names changing, tablename changing or what?
    If the table is just getting some new columns added, then no problem. Your existing reports will still be fine and when you perform a refresh on the business area where the folder is pointing to your table, it will just pick up the new items.
    If columns are going away, then your reports will get an error if they refer to that column name via the folder. You can do a kludge to cover this for the short term. In the folder in Admin, you can add a calculation with the exact same name as the column that's going away. Then - if it's a character - put in some kind of striking phrase like 'Russ Was Here'. Then when the existing reports are run, you'll see the phrase and know you just have to delete it from the report. Once all gone from all reports - you can delete the condition from the folder.
    Hopefully you can see the reliance on the Discoverer folder having to have a non-changing table. The easier thing to do for the future - is to create a database view that points to the table. Then if the table changes in ANY way (well, except from being deleted altogether with no replacement table), you can always fix the view to return proper data and as your Disco folder is pointing to the view, nothing changes.
    Hey this is what NoetixViews does, what BIS view do, etc. - it's IMHO the best way to go for future development.
    Russ

  • Inside border of table changes to white in opera and ie8?

    Does anyone know why Opera and internet explorer change the inside borders of the table to white?
    In Safari and Firefox it stays black.
    Here is a link to the website
    EDIT:
    I now attached a screen shot of the table of what it looks like in opera.

    I no longer worry about Netscape or IE5.5 as these browsers are officially obsolete.  But IE6 is still used by a enough people worldwide who are on older operating systems & for whom upgrading to IE7 or IE8 may not be an option. What are they supposed to do?
    Personally I don't want to upgrade out of IE6 because I still need it to test web pages.  If I want to look at your site in IE7 I will jump to my laptop.  And if I want to look at it in IE8, I will jump to my Vista OS.  Put on the IE Png fix and you won't have any unhappy site visitors.   If you force people to upgrade to a browser they cannot possibly support, you will drive clients away - guaranteed.  IE6 sucks, we all know this.  But it's still here so we need to deal with it.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.com/blogspot.com

  • Track Table Changes

    Hi,
    May I know how to track changes to a table,
    eg. what data has been added/updated/deleted by who and when?
    i have set rec/client parameter in the profile.
    and using SE13, i have tick the log data changes flag of the table.
    when using scu3, logging display status, i can see logging is active
    and the table logging status is active too.
    when using scu3, list of change docs, the page shows
    "Analysis without archived log data
    No logs found for the selected period"
    When clicking on compare, current and history is the same.
    We have made a few updates, additions of rows to the tables.
    May I know how to view these changes, made by who and when.
    What other setting do i have to set?
    Thanks.

    Hello Lovejoy,
    Unfortunetly, the SDN search is not working today for some reason (no sarcasm intended... -Regarding Search ).
    When it is back up again, search for the term rec/client. There are also SAP notes on it.
    Cheers,
    Julius

  • Follow up data table changes

    Hi experts,
    I need to modify a data table according to the requirements. I need to log when and who modified the table and what fields are changed, what is the new and old value of the field.
    Is there any possibility to follow up the changes in a simple way?

    Generate a table maintenance of this data table. take the reference of the document mentioned at link below to do the same. This document will give you an insight of how all the things which you require should be fulfilled.
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/60ffac76-93f3-2c10-a4b6-e33fb866d1fb
    Hope this helps!!
    Kanchan

  • Right way to fire table changes

    suppose i have a class that extends AbstractTableModel and i used a List to store data, like
    public class MyTableModel extends AbstractTableModel
    List dataList = Collections.synchronizedList(new LinkedList());
    public void insertMyData(String data)
    synchronized(dataList)
    // ... do something
    ##Line A##
    ##Line B##
    If i want to fire table changes, say like using
    this.fireTableDataChanged();
    where should i place it?
    at ##Line A## or ##Line B## ???
    or should I use
    SwingUtilities.invokeLater(new Runnable(){public void run(){
      this.fireTableDataChanged();
    Moreover, i would like to ask, if I implement my own TableCellRender and overriding the getTableCellRendererComponent method, all the calls like setText, setBackground, setForeground,...
    should i use SwingUtilities.invokeLater to do that? or just call it as usual ?
    Thanks alot

    Since you mention synchronized several times, I assume your model will be accessed from different threads
    (although you didn't write this.) Client code will have to be careful: getRowCount may return 10, but by the
    time the client gets to row 7 it may no longer exist! What does your model do when getValueAt is based
    indices that are out of bounds?
    As far as synchronization goes, I think you are going overboard with:
    List dataList = Collections.synchronizedList(new LinkedList());...since you are using synchronization blocks elsewhere. In general, I find little use for those synchronizedXXX
    factory methods -- usually the class having a collection member provides the thread safety.
    As far as the listeners go, model listeners assume their event handlers are executing in the EDT, so
    you will have to call the fire*** methods from the EDT. This means you have to use invokeLater or invokeAndWait.
    Using invokeAndWait defeats the multithreading you are building, so I think you
    should call invokeLater, and since this is an asynchronous-style call it makes no sense doing it
    from within a synchronized block. Just be aware that your JTable class may quety the model
    out of bounds.
    Also, if your model's data is written or changed seldom but read often, I would use the serial immutable
    pattern. Have the List reference dataList point to list whose state is immutable. If you want to change
    the data, you make a copy, change that and then have dataList refer to the updated copy.

  • Data in the table changes when multiple users try to submit data

    I have a dynamic table. The table is created in the wdDoModifyView. The user can load data into the table from an excel file. So I have a "Load" button that loads the data from the selected excel file to the table. I also have a "Submit" button. This "Submit" button converts the data to an xml file and make a call to an oracle stored procedure for validation check. If there's an error it will be returned and displayed to the user. If none, a summary of data for posting will be displayed to the user. If the data is correct and the user hit the ok button, the same data will be return to oracle sp for loading in the table.
    The problem we encountered is when multiple users are loading and submitting at the same time, the data displayed in the dynamic tables changes after clicking the ok button. It is as if, the table displays the data being loaded by other user.
    This is an error that is difficult to recreate. This doesn't happen all the time. I hope you somebody could enlighten me why this is happening. I'm not sure if it has something to do with multithreading or session.
    Edited by: Marlyn Agco on Apr 14, 2009 3:57 PM

    Hi Armin,
    Did you mean storing view instances in static references and accessing them outside the wdDoModifyView is not a good idea? In wdDoInit the nodes are dynamically created according to the xml file being returned by the database. This node is stored in a static variable which is also used in wdDoModifyView to create the dynamic table.
    What do you suggest? We're still encountering same issue when multiple users are uploading data.

  • Initial Balances for some of the G/L Accounts  in GLPCT table changed

    Sub : G/L Account Balance( T code FAGLB03 )  and EC-PCA: Totals Table (Table GLPCT) initial balances are not same for some of the G/L accounts ( Initial Balances for some of the G/L Accounts and profit centers in GLPCT table changed )
    Dear Friends
    We are in SAP ECC 5.0. We are using New G/L Accounting
    G/L Account  Balance(Initial Balance)( T code FAGLB03 )  and EC-PCA: Totals Table (Table GLPCT) initial balances are not same for some of the G/L accounts ( Initial Balances for some of the G/L Accounts and Profit centers in GLPCT table changed )
    G/L Account : 1110001 AR Trade - Recon
    G/L Account Initial  Balance( T code FAGLB03 )          36,789,209.26 USD
    EC-PCA: Totals initial balance  (GLPCT table)                14,178,848.14 USD
    I found in GLPCT table initial balances for G/L 1110001 and some of the profit centers are changed. The initial balances are not supposed to change for the entire financial year
    I have checked   none of  documents for this G/L and these Profit centers of last financial year  have been posted or reversed in current financial year.
    Please try to help me what has caused to changed the initial balances and how to correct it
    Please let me know if you guys need more details
    Thanks in advance
    Thanks
    MVS

    Hi Vinay,
    If I understood correctly you are trying to balance  Accumulated Depreciation accounts (from the AA module) with the Cost Depreciation Accounts.
    If they don`t balance zero, it mostly likely means, that some user has posted manually deprecian in your GL, not using the depreciation program.
    Hope this helps.
    KR
    Severina Koleva

  • Please confirm wheather the tables changed or obsoleted from 11i to R12.

    All,
    Can you please let me know whether the following tables are replaced/obsoleted and such information from 11i to R12 as part of upgrade.Please let me know if you need any further information.
    Just want to know ,the following tables are changed from 11i to R12,if yes what has changes & what has replaced with.
    General Ledger (GL)
    GL_PERIODS
    GL_BUDGETS
    GL_PERIOD_STATUSES
    GL_BALANCES
    GL_BUDGET_VERSIONS
    GL_CODE_COMBINATIONS
    GL_BALANCES
    GL_JE_CATEGORIES_TL
    GL_JE_SOURCES_TL
    GL_JE_BATCHES
    GL_JE_HEADERS
    GL_JE_LINES
    Accounts Payable (AP)
    AP_TERMS_TL
    AP_CHECKS_ALL
    AP_INVOICES_ALL
    AP_BATCHES_ALL
    AP_HOLDS_ALL
    AP_PAYMENT_SCHEDULES_ALL
    AP_SYSTEM_PARAMETERS_ALL
    AP_LOOKUP_CODES
    AP_INVOICE_DISTRIBUTIONS_ALL
    AP_INVOICE_PAYMENTS_ALL
    Fixed Assets (FA)
    FA_BOOKS
    FA_ADDITIONS_TL
    FA_ADDITIONS_B
    FA_ASSET_HISTORY
    FA_CATEGORIES_B
    FA_CATEGORIES_TL
    FA_CATEGORY_BOOKS
    FA_CATEGORY_BOOK_DEFAULTS
    FA_DISTRIBUTION_HISTORY
    FA_DEPRN_DETAIL
    FA_DEPRN_PERIODS
    FA_RETIREMENTS
    FA_LOCATIONS
    FA_ASSET_INVOICES
    FA_RETIREMENTS
    FA_TRANSACTION_HEADERS
    FA_CALENDAR_PERIODS
    Purchasing (PO)
    PO_DISTRIBUTIONS_ALL
    PO_LINE_LOCATIONS_ALL
    PO_NOTIFICATION_CONTROLS
    PO_ACTION_HISTORY
    PO_LINE_TYPES_TL
    PO_HAZARD_CLASSES_B
    Thanks a lot in advance.

    Please see your other thread -- 11i to R12 Tables/Views Replacement or obsoleted.

  • Help with creating a sql file that will capture any database table changes.

    We are in the process of creating DROP/Create tables, and using exp/imp data into the tables (the data is in flat files).
    Our client is bit curious to work with. They do the alterations to their database (change the layout, change the datatype, drops tables) without our knowing. This has created a hell lot of issues with us.
    Is there a way that we can create a sql script which can capture any table changes on the database, so that when the client trys to execute imp batch file, the sql file should first check to see if any changes are made. If made, then it should stop execution and give an error message.
    Any help/suggestions would be highly appreciable.
    Thanks,

    Just to clarify...
    1. DDL commands are like CREATE, DROP, ALTER. (These are different than DML commands - INSERT, UPDATE, DELETE).
    2. The DDL trigger is created at the database level, not on each table. You only need one DDL trigger.
    3. You can choose the DDL commands for which you want the trigger to fire (probably, you'll want CREATE, DROP, ALTER, at a minimum).
    4. The DDL trigger only fires when one of these DDL commands is run.
    Whether you have 50 tables or 50,000 tables is not significant to performance in this context.
    What's signficant is how often you'll be executing the DDL commands on which the trigger is set to fire and whether the DDL commands execute in acceptable time with the trigger in place.

  • Control Table changes

    Hello All,
    Can anyione help me on this. I am not able to understand what control table changes mean. I know what Table controls are but not known to control table.
    And they are different from each other.
    Can anyone please help me on this.
    Regards
    anu

    hi,
    WELCOME  TO SDN.
    *Control Tables
    The search indexes for address data, as well as the address data itself, are client-dependent. There can now be other differentiations within a client. These are called "Index pools".
    The division reflects the fact that multiple areas of master data are involved, which differ from the business embedding in the SAP System and from the technical implementation.
    Two such index pools are currently defined in table TSADRVGRP with a technical key derived from control table TSADRV:
    For More details
    http://help.sap.com/saphelp_nw04/helpdata/en/81/23a63a8e1d1e49e10000000a11402f/content.htm
    Hope this will help you.
    Rewrd points, if found helpful
    Regards
    ANVER

  • Std table changes

    hi,
    i am working as abap consultant.
    i have one query if we try to change the field length of field in std table,then what will happen.if something happens what is the solution for that.
    please guide me in this issue.

    DO NOT change it!!!
    You will permanently alter the underlying DB table.
    This will cause countless upgrade issues in the future. 
    Create a custom field in the table (if that can meet your needs as well).
    If not, contact SAP for assistance.

  • Base table changes

    i have a procedure which contains external table with 100 columns..
    data from this table is tranferred to temp table..
    any errors are caught here and if there are no errors then base table is merged with temp tables data..
    my problem is columns get added / removed and even data types are getting changed many times for bas table..
    what would be alternative for this???
    while inserting i have selected columns from ext table and then inserted coulmn wise in temp table
    regards
    avinash

    I agree with Blu. It makes no sense to hack permanent or base tables like that.
    Just how is the existing software (client software, queries, PL/SQL code, etc) to know how to deal with these new columns and data type changes? What about data integrity? Constraints? Foreign keys? Indexes? Etc. Etc.
    Relational design is not just a good idea. IT IS THE FUNDAMENTAL PRINCIPLE OF RELATIONAL DATABASES.

  • View Customization Table changes and Data  table base changes in a report

    Hi All,
    How to view Customization Table changes and DAta  table base changes in a report ,
    Is it right transactions: SCU3 or RSVTPROT
    Also plz let me know the concept of audit trial,
    Thanks
    SD

    Hi,
    Changes to master data objects must be captured for the For compliance purposes. The auditor allows you to be able to view and print an audit log of changes to master data objects for a chosen period. It is very common for external auditors to focus on what has changed from one year or quarter to the next to help determine the nature, extent, and population for testing. To configure and access your audit log, perform the actions listed with each of the following utilities.
    Audit Trail is used to track the record changes.
    The report RPUAUD00 gives all the changes done to the masterdata by any user anytime.
    But, before using this audit trial, please ensure that the system hardware is well equipped as the audit trials activation would later become a performance issue as this would occupy a lot of space in the coming time.
    Best Regards,
    Venkat.

Maybe you are looking for