+ Reply to Thread + Post New Thread
Results 1 to 5 of 5
  1. #1
    Novice's Avatar
    Novice is offline Junior Member
    Join Date
    28 Oct 2008
    Posts
    1
    Say Thanks
    0
    Thanked 0 Times in 0 Posts
    Documents
    0
    Uploads
    0

    Default Oracle Apps User List

    Is it possible to generate a list of users from Oracle apps 11i.

    I have very limited experience of the application but have been asked to generate a list for the purposes of a SOX audit.

    Any help is appreciated.

    Best regards,
    Nov.

  2.    Club-Oracle Complementary E-Books and Magazines
    Get your free Complementary Copy of Oracle Magazine

    You can also browse the Free Magazines and E-Books section to see the complete list of free magazines, e-books and Whitepapers.

  3. #2
    Sadik's Avatar
    Sadik is offline Administrator
    Join Date
    03 Aug 2008
    Location
    Kolkata, India
    Posts
    1,184
    Say Thanks
    7
    Thanked 83 Times in 54 Posts
    Documents
    4
    Uploads
    2

    Default Re: Oracle Apps User List

    Quote Originally Posted by Novice View Post
    Is it possible to generate a list of users from Oracle apps 11i.

    I have very limited experience of the application but have been asked to generate a list for the purposes of a SOX audit.

    Any help is appreciated.

    Best regards,
    Nov.
    Do you mean is there a report or u want to know about a table?

    you can look at PER_ALL_PEOPLE_F table or PER_PEOPLE_F view. I can give you a more detailed answer tomorrow from office.
    Learn Oracle with Oracle forum. Check out The Technology Blog

  4. #3
    Sadik's Avatar
    Sadik is offline Administrator
    Join Date
    03 Aug 2008
    Location
    Kolkata, India
    Posts
    1,184
    Say Thanks
    7
    Thanked 83 Times in 54 Posts
    Documents
    4
    Uploads
    2

    Default Re: Oracle Apps User List

    PER_PEOPLE_F will give a complete list of users with first name, lastname and fullname
    Learn Oracle with Oracle forum. Check out The Technology Blog

  5. #4
    rtagarra's Avatar
    rtagarra is offline Junior Member
    Join Date
    11 Feb 2009
    Posts
    1
    Say Thanks
    0
    Thanked 0 Times in 0 Posts
    Documents
    0
    Uploads
    0

    Default Re: Oracle Apps User List

    i think u want to get list of apps user ie from fnd_user....if so there is already a seeded concurrent program something like 'Active user'.

  6. #5
    Sandy270783's Avatar
    Sandy270783 is offline Junior Member
    Join Date
    02 Nov 2009
    Posts
    5
    Say Thanks
    0
    Thanked 0 Times in 0 Posts
    Documents
    0
    Uploads
    0

    Default Re: Oracle Apps User List

    Option1:
    Go to the resposibility: System Administrator
    Run the request : 'Active Uses'
    Option 2:
    write the following query:
    select * from fnd_user

    If you want to know basic details of ur users then write:

    select papf.employee_number,papf.full_name
    from per_all_people_f papf,fnd_user fu
    where papf.person_id=fu.employee_id
    and trunc(sysdate) between papf.effective_start_date and papf.effective_end_date

    Sandy

Similar Threads

  1. Hurrah! I am No.3 on top users list!
    By tyro in forum Coffee Corner
    Replies: 3
    Last Post: 01-30-2009, 05:40 AM
  2. Oracle Datatypes List
    By jay_pink_elephant in forum SQL PL/SQL
    Replies: 2
    Last Post: 11-29-2008, 05:58 AM

Tags for this Thread