Big list of users created at the Financial applications

HI
During application installation there are quite a big list of users created at the Financial applications. Need to findout what is the impact, can we remote these accounts or lock since these applications are not used
Regards

Please refer to these docs.
Best Practices for Securing the E-Business Suite [ID 189367.1]
Best Practices For Securing Oracle E-Business Suite Release 12 [ID 403537.1]
What Is The Impact Of Disabling Oracle Seeded Users? [ID 418767.1]
Can The Autoinstall Account Be End Dated Or Not? [ID 820065.1]
Thanks,
Hussein

Similar Messages

  • How can I find out the list of users who has the access to IT 0008

    All,
    How can I find out the list of users who has the W R permission for IT 008
    for others?
    SUIM doe not look like giving me the correct results.
    Please advise.
    Thanks,
    From
    PT.

    combine tables AGR_1251 and table AGR_Users on keyfield AGR_USERS
    in tabel AGR_1251 select on Field LOW values IT0008.OR W OR R,
    noiw you get also other values
    So better solution run the query twice over AGR1251 first on IT0008 and secondly on values W OR R and then the result over table AGR_USERS
    Youu also might put an additional selection on object P* (only selecting HR objects)
    output wll be UID in table AGR_USERS

  • I want see list of user's in the portal

    hi,
           i want see list of user's in the portal how is it, can u help any body?
    ok
    bye bye...

    Hi Rama
    For inforamtion on logged in portal users
    How do i trace How many users logged into portal?
    http://help.sap.com/saphelp_nw04/helpdata/en/58/728ea01cf64fff996b827f2a06f9b1/frameset.htm
    Hope it helps
    Regards

  • User validation for the BSP application

    I wanted a user to access the bsp application.
    I already have the user names maintained in the database who will be using the application.
    i am using the application class for my application.
    where should i do the user validation and how.
    i know tst if i would had used the model class then i can do it in the request method of the model class.
    but where to do it when using the application class.
    Thanks

    Hi Din,
    I assume that the usernames that are present in your Database also exists in the WAS Server.
    i.e. The database has a part of users that are present in the WAS Server.
    Your need is to allow only those users in the database to access your bsp application and not others correct!
    If your first BSP Page is a ...
    <b>View</b>
    1.In the DO_INIT method of the Corresponding Controller Class populate the internal table that is present in the Application Class with the usernames that are present in the database.
    2. In the DO_REQUEST method of the Corresponding Controller Class check for the username who runs your BSP Application is present in the Database.
    You can get the username who run the bsp application using the system field...
    data: username type string.
    username = sy-uname.
    So if the <i>username</i> is in the database show your bsp page else show an error page.
    <b>You can directly check for the sy-uname is present in the database.</b>
    <b>Page with Flow Logic</b>
    It is same as MVC only thing is that method name changes...
    Place the code in the DO_INIT of MVC in onCreate of Page with Flow logic.(Populate the internal table of the application class with the usernames from the database)
    Place the code in the DO_REQUEST of MVC in onRequest of Page with Flow logic.(Check whether the sy-uname is present in the itab or directly in the database).
    Hope it solves your problem
    Regards,
    Maheswaran.B

  • How to manipulate users provisions in the planning application MSdatabase

    Hi All.
    I want to change user provisions in the Planning Application MSDatabase without using Hyperion planning .
    How can I directly use msDatabase tables and change user provisions.
    which tables must be used for this operation?

    İ am new in essbase and hyperion planning.
    İn my test system there are alot of user. for example when i have to change some users provisions for accessing some dimensions or forms, i change provisions one by one for all specified users so it takes long times.
    I want to learn that can i change provision options without using hyp planning?, forexample can i change users provisions using with my custom java apllcation.
    And my system is test system so İ can restart it if it is necessary.

  • Powershell help - get a recursive list of user created inbox subfolders based on variable

    I have a requirement to identify all user mailboxes that have user created subfolders under the Inbox folder.  I can use the following powershell command to obtain the information I need, but only for one user at a time:
    Get-mailboxfolderstatistics username -FolderScope Inbox | select name, foldertype | Where-Object {$_.FolderType-eq "User Created"}
    I have a list of about 700 usernames which can be loaded into a variable.  I've tried experiementing with the ForEach-Object cmdlet but I can't seem to get it to work.  Is there a way to get my command above to loop through all usernames stored in
    a variable, and then export to CSV?

    For all users dynamically...
    get-mailbox | Get-mailboxfolderstatistics -FolderScope Inbox | Where-Object {$_.FolderType -eq "User Created"} | Select Identity, Name, FolderType | Export-CSV Mailbox-Folder.csv -NoTypeInformation
    From a variable...
    $mailboxes = get-mailbox . .. . . 
    $mailboxes | Get-mailboxfolderstatistics -FolderScope Inbox | Where-Object {$_.FolderType -eq "User Created"} | Select Identity, Name, FolderType | Export-CSV Mailbox-Folder.csv -NoTypeInformation
    Blog |
    Get Your Exchange Powershell Tip of the Day from here

  • To list only user databases with the size for a instance in sql server 2005

    Hi,
    I looking for T-SQl to  list only user databases with their size for a instance in sql server 2005

    Try this:
    use [databasename]
    go
    if convert(varchar(20),SERVERPROPERTY('productversion')) like '8%'
    SELECT [name], fileid, filename, [size]/128.0 AS 'Total Size in MB',
    [size]/128.0 - CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0 AS 'Available Space In MB',
    CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0 AS 'Used Space In MB',
    (100-((([size]/128.0 - CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0)/([size]/128.0))*100)) AS 'percentage Used'
    ,((CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0)/([size]/128.0))*100 as 'percentage used'
    FROM sysfiles
    else
    SELECT [name], file_id, physical_name, [size]/128.0 AS 'Total Size in MB',
    [size]/128.0 - CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0 AS 'Available Space In MB',
    CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0 AS 'Used Space In MB',
    (100-((([size]/128.0 - CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0)/([size]/128.0))*100)) AS 'percentage Used'
    --,((CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0)/([size]/128.0))*100 as 'percentage used'
    FROM sys.database_files
    go
    Or can refer below link:
    http://gallery.technet.microsoft.com/scriptcenter/All-Databases-Data-log-a36da95d
    Please click the Mark as answer button and vote as helpful if this reply solves your problem

  • Anonymous FTP User created by the system lacks the user name

    I'm experiencing some problems and inconsistencies in the Mac OS X Server 10.4.7 FTP service.
    First I'll report this behaviour to evaluate if it's worth a bug report.
    I read in the that the user with user name 'Anonymous FTP User" and short name 'ftp' is created by the system the first time the FTP server is accessed using an anonymous user.
    I noticed that the user is indeed created but its user name field is empty. It doesn't have the associated LDAP record, too.
    If I try to manually create a user with an empty user name field WGM errors, so could this be considered a bug?
    PowerBook G4 867MHz 12,1"   Mac OS X (10.4.7)  

    Hi
    Using NFS u can write the file in XI directories only not on other system
    If u want to write in other System (ECC in u r case) u shud use FTP protocol.
    NFS ===> xi local path
    other path ==> use FTP protocol
    thx
    srini

  • How user will execute the BSP application I created...

    Hi,
    I have created a BSP application which has various pages with flow logic.
    Now to execute it I use execute icon and then I get moved to web browser.
    The application is working cool.
    But what I am wondering is user is not going to go to code and use excute button to execute the code.
    So how can he do the execution of page ?

    You have lots of options (and no generally users don't go to SE80 and launch your application from there).
    1.  Give out the URL to your application. Users can launch the application directly from the URL in the browser. The URL could be stored in the Browser Favorites or as a desktop icon.
    2.  If you use the Netweaver Portal - create a BSP iView for the application and attach it to the users' role.
    3.  A BSP URL can be added as a link in the SAP Easy Access Menu.  Under favorites, just choose Insert Other Object
    4.  You can create an ABAP Transaction code. In the program under this transaction code, you could host the BSP application in an HTML Control or open it externally in a browser via CL_GUI_FRONTEND_SERVICES=>EXECUTE.  It is fairly easy to create a generic ABAP program to launch BSP application and receive the application name via a Transaction Code Parameter. You can build a specfic URL to a BSP application in code using CL_BSP_RUNTIME=>CONSTRUCT_BSP_URL.

  • HT4796 It is impossible to pass the log in phase using an user created by the migrate PC to MAC Assistant

    The migration assistant (PC Windows Vista Premium edition to MAC) has created a new user on the MAC. Unfortunately it is impossible to log the system in using that user: no password accepted. I tried to change the user password but the login result still impossible.
    Thanks in advance for any suggestions.

    Hi user,
    Welcome to OTN world.Always share your Jdev version.
    Why are you not storing the login user name into a session variable and store it into your table.

  • SharePoint 2013 access to custom lists a user creates

    In an InfoPath custom list form 2013, I have setup a group of test users with 'view' access to my test SharePoint website. These users are able to enter data in a custom list.
    When the user looks at the data that they originally entered by accessing the data from the sharepoint website, the InfoPath Form looks like the form is read only. However if the user clicks the auto generated edit buttons on the top of the form, they are
    able to change the data in the list.
    Basically I would like a way for the user to not be able to change the original data in the custom list.
    Is there a way that I can accomplish this goal like:
    1. disable the autogenerated buttons,
    2. have all the textboxes set as read only,
    3. change some kind of an access level?
     Would you let me know what method works and how to accomplish my goal?

    In InfoPath Designer go to File, Info, Form Options.
    In the Web Browser category uncheck Show InfoPath Commands in Ribbon or Toolbar.
    Mike Smith TechTrainingNotes.blogspot.com
    Books:
    SharePoint 2007 2010 Customization for the Site Owner,
    SharePoint 2010 Security for the Site Owner

  • OBIEE 11g issue - same user assigned to the multiple application role

    Hi All,
    We are facing an issue when assigning a user to the multiple application role and applying the data level filter on the different column of the same table.
    For example, we have a table Department with three columns Department No, Department name, Department location.
    Application Role A1 and A2 are created.
    Data Level security Applied on the application role A1: Department Name='Finance'
    Data Level Security Applied on the application role A2: Department location='US'
    The user "User1" is created in LDAP and is assigned to both the Application roles A1 and A2.
    When logged in with "User1", none of the filters of Role A1 or A2 is applied in the report. If this user is assigned to only one role, either A1 or A2, then the filter is applied. It seems the filter will not be applied if a user belongs to multiple roles with data filter applied on the same table across these roles.
    Please reply if anyone has faced similar issue.

    Hi All,
    Regarding the above issue to update the analysis we came up that the user if assigned to the multiple group with the data filter applied on the same column of the table is getting an *"OR"* join.
    We had a requirement to get an "AND" in the query condition. Please let us know if any one faced the issue and the resolution of the same.
    Regards,
    Jyotshna

  • List all users and other information into application

    Hi,
    In the LDAP that we use, it contains - user id and xyz_code (this code is particular to application). Note that for each user_id there exists one xyz_code.
    I can get the user id from IUser and xyz_code from an attribute app_xyz_code.
    String xyzCode = sapume.getValue("app_xyz_code",iuser, true);
    I have a requirement where I need to get user ids for a set of xyz_codes.
    1) Suppose I have 100 xyz_codes I need to get 100 users from LDAP. So 100 times I need to hit LDAP. How do i make a search in LDAP using xyz_code. Is it preferrable to make a search like this?
    2) Another thing I want to know is if it is possible to get all the users and their corresponding xyz_codes from LDAP and store them in a List/Vector/Enumeration. So that I can search in the list for user id corresponding to xyz_code.
    Any code snippets is appreciated.
    Thank you
    Karthika

    Thanks for your reply!
    I tried the following:
    $Users = get-aduser -SearchBase 'OU=Mes Utilisateurs,DC=itced,DC=lan' -filter '*'
    $OU = $User.distinguishedname -split ',',2 | select -last 1
    $output = @()
    Foreach($User in $Users){
    $budgetanalytics = Get-ADOrganizationalUnit -SearchBase $OU -Properties objectGUID
    $Object = New-Object PSObject                                       
    $Object | add-member Noteproperty user $user.name         
    $Object | add-member Noteproperty OU $OU                       
    $Object | add-member Noteproperty objectGUID $objectGUID       
    $output += $Object
    $output
    but I get the following
    user                                             
    OU                                              
    objectGUID                                      
    User1                                            
    OU=Mon OU,OU=Mes Utilisateurs,DC=itced,DC=lan    {Microsoft.PowerShell.Commands.Internal.Forma...
    User2                                            
    OU=Mon OU,OU=Mes Utilisateurs,DC=itced,DC=lan    {Microsoft.PowerShell.Commands.Internal.Forma...
    Why do I get "Microsoft.PowerShell.Commands.Internal.Forma..." instead of the actual objectGUID of the Organizational Unit
    Thanking you in advance

  • Capture all the Users who viewed the BSP Applications ???

    Hello All,
           I need to create a BSP Application which shows all the Users, who have executed different BSP Applications and the Number of Times each user has executed these BSP's.
    Is this Possible ?
    If yes, can anyone tell me how to go forward  ????
    Regards,
    Deepu.K
    Message was edited by:
            deepu k

    Hello Eddy,
          I have gone thru ur Blog.
    But in this I guess I need from this part -->
    C. Generating Own Stats in BSP
    C.1. Logging It
    If all of the aforementioned tools don’t cover what you’re looking for, or there are technical/other reasons not
    to choose them, then there is only one thing left to do. Write your own stuff. It really isn’t that difficult to do
    and, if you are confident enough, you can make something that suits your needs 100%. Or as a host in a
    Flemish regional TV DIY show always says: “What you do yourself is usually done better.” Let us see what
    you need to do in order to achieve this.
    First of all you need data on the browser. This can be done via JavaScript and the navigator object:
    appCodeName
    The code name of browser (i.e.: Mozilla)
    appName
    The name of the browser (i.e.: Microsoft Internet Explorer)
    appVersion
    Version information of the browser (ie: 4.75 [en] (Win98; U)
    userAgent
    String passed by browser as user-agent header. (ie: Mozilla/4.0
    (compatible; MSIE 5.5; Windows 98; Hotbar 3.0))
    Platform
    The platform of the client's computer. JavaScript 1.2 property. (ie:
    Win32)
    You probably need some extra information like IP number. This can be done via the
    request->get_header_field method.
    As such you don’t need to retrieve this info every time if you have a single entry point like a login page. Just
    put it in a server side cookie. Each new page will read this cookie and save this info together with the page
    name, user id, eventual parameters, etc. into the log. Now I talked earlier about the visitor concept. This is
    also an ideal place to implement this. If you are only interested in returning visitors with a full day time interval,
    you can for example determine whether that user has already used that application. If so, you just increment a
    counter. If not, you have to create a new line. This method will also reduce the size of your table.
    C.2 Showing It
    The only thing you need to do is to analyze and visualize stuff. The analyzing stuff is completely up to you.
    The following screen shot is an example where the total number of visitors within a given time frame is shown.
    It also shows the number of unique visitors in that same time frame compared to the potential number of
    visitors. You might find this of interest if you want to know how many (internal) users actually use your intranet
    application. You can couple the user info to the department info and then you can figure out whether
    department X or Y is actually using the application.
    But I didnot get the actual idea of implementing this in my BSP.
    Can you give an explanation for the above ?
    Regards,
    Deepu.K

  • Uploads big lists to user tables without admin rights

    I have an Oracle database which operates like follows:
    1) users upload lists of customers/regions/products in their tables using MS Access + ODBC connection (just copy-paste to open window with linked table)
    2) they press a button and Pass-thru query returns results based on step 1
    Could I move this GUI to ApEx?
    Step 2 is simple SQL Report, but how should step 1 be done?
    Users should not be allowed to modify database structure, so standard 'upload from file/spreadsheet' is not a good idea..

    Could you describe Step 1 in a little bit more detail? Do users paste a list of customers into a text box, click a button, and then see that list? Or are they using the text box as a filter to limit a larger list?
    In any of these cases, it's quite possible that APEX will be able to handle this. But some more details would allow us to confirm that it actually can.
    Thanks,
    - Scott -

Maybe you are looking for

  • Unable to do usermapping for the group in the Enterprise portal

    Hi All, I am unable to do usermapping for the group in the Enterprise portal. The system connection is maintained, with the user management as UIDPW and user,admin. User mapping is possible with my user but not for a <b>group</b>. Please suggest. Tha

  • Item category editable for components in task list

    Hi all, I need help to put the item category editable for components in task list. Currently it comes as "L" and the field is non editable. Do you have any ideas or solutions? I already tried SPRO but didn't find anything useful. Thanks in advance, M

  • Debugging of method at runtime

    Hi, I need to examine behaviour of a methofd in a workflow after clicking approve button. The method  i want to debug is in task below user decision task, Can anybody guide me how to debug this bachground task mehtod? Thanks.

  • Swatch library..

    Hi, I'm new to Illustrator Scripting.. Swatch library contains some set of preset colors like pantone, hsk etc.. I need to find out the counting of tat.. I don't know tat how to find out tat... Can anyone help me...

  • Mirror my I-pad ?

    Just hooked up Apple tv, I was under the understanding I could mirror my I - pad. I am trying to view my many photos on my television , stored on photo stream.  It shows about 69 photos, I have almost 2000.      Are they supposed to be controlled fro