View changes for a user

Hi,
Could anyone tell me the sql for finding what are all the users who have changed/modified the data/structure in the database for some period. Let say i would like to find the user names (Operating system) who involved in changed the data/structure for the last 3 days on a particular database.
Regards,
Nagarjun.

Hi,
Database Auditing is the answer.
http://www.oracle-base.com/articles/8i/Auditing.php
http://www.securityfocus.com/infocus/1689
Regards

Similar Messages

  • Can we delete the views created for a user in Oracle BPM J2EE WL

    I am using Oracle BPM 10.3 MP2 Enterprise Edition
    Version: 10.3.2
    Build: #100486
    Can we delete the views created for a user in workspace?
    Usually we are using the filter option within workspace and then saving it as view.
    Would like to know if we can delete such views and create again.
    These views are user specifc
    Thanks in Advance.
    -Sree

    I usually use this scripts to clean the workspace user custom seetings:
    delete from fuego_objclassinst where fuego_objclassname = 'bea.albpm.workspace.layout';
    delete from fuego_strprops where (fuego_category = 'fuego-view' OR fuego_category= 'fuego-presentations');
    delete from fuego_strprops where (fuego_category = 'WAM' );
    Hope this help.
    Regards

  • Howto Refresh SAP BW Query Changes for roles (User menu)

    Hi All,
    I have apply new changes for combine hierarchy. However I have tested in Query Designer/web and its works ok hence the user cant see the change.
    Howto Refresh SAP BW Query Changes for roles (User menu)
    Below is the setup we do have (sap bw 3.5)
    1. User run query from User menu (They logon to bw backend and run query by click on the icon on thier user menu.
    Changes.
    1.Apply combine hierarchy (Rows in Query Designer)
    2. I have display query on the web and its work as expect
    Issue
    1. Query not refresh in user menu (Roles) Users run the query through user menu
    Regards Jon

    thank you

  • How-to-tick-automatically-adjust-clock-for-daylight-saving-changes-for-domain-users

    hi
    please help me
    I am using windows 2008 as a domain controller with windows XP & windows 7 as a client.
    how-to-tick-automatically-adjust-clock-for-daylight-saving-changes-for-domain-users
    Thanks in Advance
    my mail: [email protected]

    Some more information would be nice (how many computers are in the domain?), but I think I have what you're looking for.  
    What you need to do is change a registry key in the client computers. It's located in the registry at 
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation
    The string name is DynamicDaylightTimeDisabled and the value for this item is
    0  (Kind of weird - by entering 0, you're saying "No, I DON'T want to DISable daylight savings time). 
    Of course, you'll need to deploy this registry information to the clients from the server.  There are several ways to do it, but the first one I'd try is to create a registry preference item on the server and deploy it as a GPP. 
    This link explains how to do this:
    http://technet.microsoft.com/en-us/library/cc753092.aspx

  • Home sharing - view format for other users tunes

    When I home share with another user's tunes, I can't get a fully organised view format (e.g. under "view" menu, sort by list, cover flow etc are greyed out). I can only get a single long list which is pretty-not-useful... It looks like this is the only way to go, but does anyone know how to get a fully featured and formatted view of another library? Thx M

    Store the media files somewhere other than the standard location. Other users cannot access the files if they are stored in the standard location. Example c:\itunes media
    Within each users login, set the library location to the location you want. Each user can access all the files and the library for each user will be different.
    My wife and I do this with an external drive on our home network.

  • Mass password change for selective User id's ?

    Hi,
        Thanks to answer for my last question, really appreciated your help.
    My new question: 
    1.   If I create Mass User Id's by using SU10, pwd's are generated automatically. Is there a way to pick a pwd e.g  initpass for all ?
    2.   Is there any program available which can be used to reset pwd's for several User Id's as   initpass or something like that ?
    Please help. thnx in advance.
    Syd.

    You can also create an ABAP program which can be used to mass change users passwords.
    Here are the functions that will do what you need
    SUSR_GENERATE_PASSWORD - Generates a Password
    BAPI_USER_CHANGE - You can use this BAPI to change just the password of a user
    Here is an example of some abap code. There may be some syntax errors and possible other issues. I just typed this out and didnt check it. Hope this helps
    constants: con_comma TYPE c VALUE ','.
    data: it_tab TYPE filetable,
            gd_subrc TYPE i,
            v_filename_string TYPE string,
            p_npass like XU400-NEWCODE.
    DATA: BEGIN OF itab OCCURS 0,
              dLine(40) type c,
          END OF itab.
    DATA: begin of it_Users occurs 0,
              UserID like BAPIBNAME-BAPIBNAME,
              Password Like XUBCODE,
          end of it_Users.
    parameters: p_file like rlgrap-filename default 'c:\users.txt' LOWER CASE.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    *&                   FILE_OPEN_DIALOG METHOD                           *
        CALL METHOD cl_gui_frontend_services=>file_open_dialog
            EXPORTING
              window_title     = 'Select File'
              default_filename = '*.txt'
              multiselection   = ' '
            CHANGING
              file_table       = it_tab
              rc               = gd_subrc.
            LOOP AT it_tab INTO p_file.
            ENDLOOP.
            v_filename_string = p_file.
    START-OF-SELECTION.
    *&                   GUI_UPLOAD function                               *
       Upload file to internal table
          CALL FUNCTION 'GUI_UPLOAD'
            EXPORTING
              FILENAME                      = v_filename_string
              FILETYPE                      = 'ASC'
              HAS_FIELD_SEPARATOR           = 'X'
            TABLES
              DATA_TAB                      = ITAB
           EXCEPTIONS
             FILE_OPEN_ERROR               = 1
             FILE_READ_ERROR               = 2
             NO_BATCH                      = 3
             GUI_REFUSE_FILETRANSFER       = 4
             INVALID_TYPE                  = 5
             NO_AUTHORITY                  = 6
             UNKNOWN_ERROR                 = 7
             BAD_DATA_FORMAT               = 8
             HEADER_NOT_ALLOWED            = 9
             SEPARATOR_NOT_ALLOWED         = 10
             HEADER_TOO_LONG               = 11
             UNKNOWN_DP_ERROR              = 12
             ACCESS_DENIED                 = 13
             DP_OUT_OF_MEMORY              = 14
             DISK_FULL                     = 15
             DP_TIMEOUT                    = 16
             OTHERS                        = 17.
          IF SY-SUBRC <> 0.
           MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                   WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
    Loop through internal table and split the comma delimited file
      LOOP AT ITAB.
          SPLIT ITAB-dLINE AT con_comma INTO it_Users-UserID
                                           it_Users-Password.
          APPEND it_Users.
      ENDLOOP.
    LOOP AT it_Users.
         if it_users-Password is initial.
            CALL FUNCTION 'SUSR_GENERATE_PASSWORD'
                 IMPORTING
                     PASSWORD = p_npass
         endif.
         CALL FUNCTION 'BAPI_USER_CHANGE'
                   EXPORTING
                     USERNAME                = it_users-userid
                     PASSWORD                = p_npass
                     PASSWORDX               = 'X'
                   TABLES
                     RETURN                  = it_ret2.
                  Loop at it_ret2.
                    if it_ret2-number = 039.
                      write: / 'password changed'.
                    else.
                      write: / it_ret2-message.
                    endif.
                  endloop.
                  Write: / ''.
                  refresh it_ret2.
    ENDLOOP.

  • Saving AVL view settings for all users

    Hi,
    I am working on web dynpro abap application which shows alv results of more reports (you will select report and it will show the alv table result).
    I have to use some standard reports for this, so I copied it to Z report and modify it so this is possible. Problem I have is that is standard report the output have maybe 10 columns, but the table I got from the report has maybe 26. I want to limit shown columns on the ALV with settings of view for alv, but the assignment is only possible for the user.
    Is there any way how to create one view settings and make it initial for all users?
    I know there is a way of modifying the standard view via abap code, but I want to keep the possibility to show all fields if required.
    Thanks for your help very much.
    Martin

    Hi,
    another problem, I was expecting the newly created variant / layout / settings for view  would be tied to the displayed table (which sounds kind of wired as I wrote it down). 
    But since I am displaying different tables in the same UI element and binding the tables and their structures dynamically the created variant applies to all of the tables (or thats how it seems) so the table which have all fields different then the layout shows nothing.
    Do you have any ideas how to get around it?
    My idea would be to store the layout (but i have no idea how it looks at db level) and identification of the report to some customer table and fill attribute of alv table dynamically according to used report. But thats just my idea, I have no idea if it si possible to do it like this.
    Is there some other way how to accomplish this functionality?
    I have also tried to do it on fieldcatalog level of the alv table, but it seems to show first, let's say, 8 fields if there is 8 fields in the fieldcatalog.
    Any help or ideas please??
    Thanks
    Martin
    Edited by: Martin Gabris on May 6, 2011 4:11 PM

  • Page setup changes for different users

    We had recently experienced page formatting changes all of a sudden. These reports were not modified nor changed but all of a sudden when users run the reports or if a developer open it in design the page setup was changed from landscape to portrait.  Also, for the same object if another developer open it, it is fine for that one person.
    Is there a individual setting or local setting for page setup?

    after you have changed the print setting in the .rpt itself and if you are still experiencing the same behaviour:
    1) first, try to see if just the .rpt itself is changing...i.e. send the report with saved data to someone that is experiencing the issue that also has crystal reports installed. if it is still happening in the crystal reports designer itself, then it is an issue for this forum.
    2) if it is only happening in the web application, then you will want to repost to the appropriate sdk forum.
    jw

  • Finder views change for all windows

    After playing around with Snow Leopard for just a few days, I noticed that when I change a view type in any Finder window, that view is applied to all windows. Is this by design? With Tiger, you could specify the view for "this folder only" or "all folders"

    Joe - I've been heavily researching this issue. I've received some helpful advice from baltow, but here is how I fixed my problem. While in Best Buy over the weekend, I played on one of their Macs running Leopard 10.5.8 to see if the problem started before Snow Leopard. It did, wasn't just me. Then I found this site:
    http://www.macintouch.com/leopard/faq.html#finder
    It said: *Why don't my window view settings stick?* The Leopard Finder's approach to consistency is to use the last view you selected in any Finder window for all new Finder windows. You can override this on a per-folder basis; go to the menu View > Show View Options (or press Command-J). This opens a view options Inspector (a mini-window much like a traditional Palette window); at the top of this window, check the "Always open in" box to force the folder always to show the current view.
    This is what was throwing me off - I thought that Always open in box was a global setting, not on an individual folder basis. With Tiger, you had two options: This window only, All windows.
    Now I will play with the Arrange By setting and see if that works as well.

  • SQL Loader and control file changes for different users

    In the front end of my application I can select a data file and a control file, and load data to the table mentioned in .ctl file. Every user who logs in uses the same .ctl file and so loads onto the same table. Now I want the user to load data onto the table in his own schema. I can get the username of the user currently logged in and i want to insert it into that username.table. So can i copy the contents of the .ctl file into a variable, modify it into username.table in that string and pass that variable as a parameter to the sqlldr command instead of the .ctl file.
    Or is there a better way how I can modify the same control file everytime to change tablename to username.tablename in .ctl file and pass to sqlldr to load data to table in local user schema table.
    Thanks and Regards

    Thanks for the reply .. user do have their user credentials but only for the application ... but all users use a common loader and control file once they log into the application. So irrespective of which user is logged in he selects the same control file and loads to the same table mentioned in the control file .. i instead want user to be able to load to the table in control file but into his schema like username.tablename instead of just the tablename mentioned in .ctl file.

  • Setting Initial View Folder for All Users at Once and Forever. How???

    <p>Is there any way to make the initial view of all users to be a specific folder? What I want to acomplish it to show my public folders expanded and always showing a specific folder. I can do it for myselft but what about a global setting?</p>

    I tried the following code and it does not appear to work.  Why?
    Our goal is to take the destop preferences of a selected user and apply those preferences to all other users.  How can that be done?  Note:  We need to apply those preferences whether they have already set their preferences or not.
         Dim oSourceUser As InfoObject
                Dim oTargetUsers As InfoObjects
                bErrorOccurred = False
                oSourceUser = oInfoStore.NewInfoObjectCollection().InfoStore.Query("SELECT SI_NAME, SI_DATA FROM CI_SYSTEMOBJECTS WHERE SI_PROGID = 'CrystalEnterprise.User' And SI_Name = '" & vstrSourceUserID & "'").Item(1)
                If vstrTargetUserID.Length > 0 Then
                    oTargetUsers = oInfoStore.NewInfoObjectCollection().InfoStore.Query("SELECT SI_NAME, SI_DATA FROM CI_SYSTEMOBJECTS WHERE SI_PROGID = 'CrystalEnterprise.User' And SI_Name = '" & vstrTargetUserID & "'")
                Else
                    oTargetUsers = oInfoStore.NewInfoObjectCollection().InfoStore.Query("SELECT SI_NAME, SI_DATA FROM CI_SYSTEMOBJECTS WHERE SI_PROGID = 'CrystalEnterprise.User' And SI_Name != '" & vstrSourceUserID & "'")
                End If
                For Each oUser As InfoObject In oTargetUsers
                    Try
                        oUser.Properties.Add("SI_DATA", oSourceUser.Properties("SI_DATA").Properties)
                    Catch ex As Exception
                        bErrorOccurred = True
                        If ex.Message.Length = 0 Then
                            strLastError = "Unknown Error Occurred"
                        Else
                            strLastError = ex.Message
                        End If
                        Exit For
                    End Try
                Next
                If bErrorOccurred = False Then oInfoStore.Commit(oTargetUsers)

  • Sales Employee does not change for different user on subsequent document

    Experts,
    This is probably a simple solution, but I can't find the answer.  I'm running version 2007A.
    I create a PO where my name is in the buyer field.  When the GRPO is done by one of my warehouse guys, my name is still referenced in the buyer field.  How can I make it so that the name of the person creating the GRPO is in the buyer field?  Or is there another way to track who receives goods in?
    Thanks in advance
    Steve

    Thanks Julie.
    I'm just trying to track down inventory discrepancies and I think it would help if I knew who received the goods in.
    Is there a query I can run that will return who created the GRPO?
    Thanks
    Steve

  • How to find the when the password is changed for a system User

    Hi to all,
    We have a test database where our application connects to system user. The application runs more than a month without any issues, But suddenly my system and sys password gets changed. I wonder how this would happen. I have checked with DBA_USERS to check whether the account gets locked, But the account is in the Open state.
    I need to find out when the password gets changed for these users and who changed it? Is there any possible to trace it or we need to enable the auditing to find it in future.
    Kindly let me know the possible ways.
    Regards,
    Vijayaraghavan K

    Vijayaraghavan Krishnan wrote:
    Hi to all,
    We have a test database where our application connects to system user. The application runs more than a month without any issues, But suddenly my system and sys password gets changed. I wonder how this would happen. I have checked with DBA_USERS to check whether the account gets locked, But the account is in the Open state.
    I need to find out when the password gets changed for these users and who changed it? Is there any possible to trace it or we need to enable the auditing to find it in future.
    Kindly let me know the possible ways.
    Regards,
    Vijayaraghavan KThe only way to implement an Oracle Audit

  • How can I see the Query view created for a different user

    Hi All,
    How can a user see the View of a query created for a different user??
    I would like some info about how to give access ( if it is a access problem) or tell me the steps to do that.
    Regards, Federico

    Hi all,
    Maybe I didn't explain me as i should or maybe you dont know what is a Query View. Lets try again, showing you the steps to open a "Query view".
    This way is from Bex Analyzer (Excel)
    I open the Bex Analyzer and connect to the system -> Open query -> Under "Type" choose "Query View"...this is just a different view of the original query (more or least columns/rows).
    This way is from Bex Web:
    Once you open/execute the query, you have a ComboBox to choose the view (previously saved)
    The problem that we have is that the views created for a user, can NOT be found by other user. The only user who can is the owner.
    Could it be an authorization problem? or is ther any configuration possible to see it?
    Thanks in advance, Federico

  • View creation authority for a user

    How can I assign MIP views or another view creation for a user ?

    Hi
    Yes you are right you can control the status based on the authorisation Object
    M_MATE_STA.
    Award points if useful
    Thanks & Regards
    Kishore

Maybe you are looking for

  • As written in kb404597

    Hi, After installing Adobe Reader 9 the runtime error as written in kb404597 occurs. This technote also gives a solution; don't use a UNC path Anyone an idea how to start Adobe Reader 9 (script/batch) with the following scenario: 1) Before starting A

  • Error when installing access manager

    Hi im following this install steps: http://wikis.sun.com/display/CommSuite/Sun+Java+Communications+Suite+6+on+a+Single+Host+(Linux) i cannot install access manage from JES in my RH4 during installation i see the error in the instal log: Java not foun

  • My volumn keys have doesn't work

    doesn't anyone know how fix this problem

  • KKBC_ORD for all orders in a plant

    Hi, Is there any report in CO-PC which would give me the information I can get in KKBC_ORD but for all orders in the plant at one run? My problem is that, I require to see the actual, target and plan activity quantities for particular production cost

  • Trouble Importing and Using a Screencast

    Hello all, I am completely new to Premiere CC but I'm having some issues. I recently used CamStudio to record a screencast that was 5 minutes long for a client. The video is 1280x720, the frame rate is 50 frames per second and the type is .avi All I