Hi, Is there any way to get details of screen users have access or any query from which we can get all screen access details for particular or for all users.
Hi, Is there any way to get details of screen users have access or any query from which we can get all screen access details for particular or for all users.
Best answer by hhy38
Hi
You can use the SQL query below. (The session language is Turkish. So, the description comes in Turkish.)
Query:
SELECT t.identity username,
po_.role permission_set,
po_.module modul,
po_.po_id screen,
po_.description screen_description
FROM ifsapp.fnd_user_role_runtime t,
(SELECT pog.po_id,
pog.role,
po.pres_object_type,
po.pres_object_type_db,
po.module,
po.description,
po.allow_read_only,
po.layer_id,
po.change_info,
po.change_date,
po.info_type
FROM ifsapp.pres_object_grant pog,
ifsapp.pres_object po
WHERE pog.po_id = po.po_id) po_
WHERE t.role = po_.role
AND po_.pres_object_type_db = 'WIN'
AND t.identity LIKE nvl('&Username', '%')
AND po_.role LIKE nvl('&Permission_Set', '%')
AND po_.po_id LIKE nvl('&Screen', '%')
Output:
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.