We want to check whom has which page. We wrote this piece of code to get it.
SELECT t.identity,
person_info_api.get_name_for_user(t.identity) person,
po_.*
FROM fnd_user_role_runtime_tab 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 t.identity LIKE nvl('&USERNAME', '%')
AND po_.role LIKE nvl('&PERMISSION_ROLE_NAME', '%')
AND po_.po_id LIKE nvl('&PAGE_NAME', '%')
ORDER BY t.identity,
po_.role,
po_.po_id
But, the description column is in English. We want to get page names in Turkish.
I found FND_USER_ROLE_RUNTIME and FND_NAVIGATOR views. In the FND_NAVIGATOR view label column has page names in Turkish.
However, I could not find any connection between these views. Could you help us?