0% found this document useful (0 votes)
1 views

profile option query in oracle apps r12

The document provides a SQL query to retrieve profile option values in Oracle Apps R12 at various levels, including user, responsibility, and site. It outlines the use of several tables such as FND_PROFILE_OPTIONS and FND_PROFILE_OPTION_VALUES to extract this information. The query also includes a decoding mechanism to display the level of each profile option value clearly.

Uploaded by

rohitrajput87
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1 views

profile option query in oracle apps r12

The document provides a SQL query to retrieve profile option values in Oracle Apps R12 at various levels, including user, responsibility, and site. It outlines the use of several tables such as FND_PROFILE_OPTIONS and FND_PROFILE_OPTION_VALUES to extract this information. The query also includes a decoding mechanism to display the level of each profile option value clearly.

Uploaded by

rohitrajput87
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

profile option query in oracle apps r12

fnd_profile_option_values in oracle apps


query to find profile option values at user and responsibility level
profile tables in oracle apps
profile option in oracle apps
profile values in oracle apps r12

SELECT po.profile_option_name "NAME",


decode(to_char(pov.level_id),
'10001', 'SITE',
'10002', 'APP',
'10003', 'RESP',
'10005', 'SERVER',
'10006', 'ORG',
'10004', 'USER', '???') "LEV",
pov.profile_option_value
FROM FND_PROFILE_OPTIONS po,
FND_PROFILE_OPTION_VALUES pov,
fnd_user usr,
fnd_application app,
fnd_responsibility rsp,
fnd_nodes svr,
hr_operating_units org
WHERE 1 =1
and po.profile_option_name LIKE '&PROFILE%%'
AND pov.application_id = po.application_id
AND pov.profile_option_id = po.profile_option_id
AND usr.user_id (+) = pov.level_value
AND rsp.application_id (+) = pov.level_value_application_id
AND rsp.responsibility_id (+) = pov.level_value
AND app.application_id (+) = pov.level_value
AND svr.node_id (+) = pov.level_value
AND org.organization_id (+) = pov.level_value
ORDER BY "NAME", pov.level_id, "VALUE";

You might also like