Below script to find a list of all uses who are online in Oracle EBS. COUNT OF USERS SELECT DISTINCT count (*) FROM icx_sessions icx,…
Leave a CommentCategory: Apps (11i, R12) scripts
To list all users having specific responsibilities in Oracle EBS. For example below we are finding “System Administrator” responsibiltiy. NOTE: IT WILL LIST ALL THOSE…
Leave a CommentFind responsibilities that can run the specific concurrent program SELECT fcp.concurrent_program_name, fr.responsibility_name, frg.request_group_name, fcp.user_concurrent_program_name FROM fnd_request_group_units frgup, fnd_concurrent_programs_vl fcp, fnd_request_groups frg, fnd_responsibility_vl fr WHERE 1…
Leave a CommentThe below scripts can be used for responsibility, menu, submenu, and function details of specific responsibilities. 1. Retrieve a list of all responsibilities. Parameters: None…
1 CommentScript to find all active responsibilities linked to an EBS user. SELECT UNIQUE fu.user_id, fu.user_name user_name, fr.responsibility_key responsibility, fa.application_name application FROM fnd_user fu, fnd_user_resp_groups fg,…
Leave a CommentSometimes users are end-dated but the responsibilities assigned to specific users are not end-dated. Below SQL code can be used to identify all such users…
Leave a CommentBelow are some of the useful Oracle EBS queries related to users and responsibilities. LIST OF ACTIVE USERS select user_id,user_name,description,email_address,start_date,end_date from fnd_user where (end_date is…
Leave a CommentThe below script can be used to find the count of users linked to each EBS application. You can also filter and get information for…
Leave a CommentBelow scripts can be utilized to find the number and details of EBS users that were on the system in the last 1 hour. The…
Leave a CommentValue of specific profile option at all level select b.user_profile_option_name “Long Name” , a.profile_option_name “Short Name” , decode(to_char(c.level_id),’10001′,’Site’ ,’10002′,’Application’ ,’10003′,’Responsibility’ ,’10004′,’User’ ,’Unknown’) “Level” , decode(to_char(c.level_id),’10001′,’Site’…
Leave a Comment