Query to get Site level and Organization level Profile Option Value
•By admin
Query to get Site level and Organization level Profile Option Value
Profile Option query
Profile Option Value Query
Oracle Apps Profile Option value query
Query to get Site level Profile Option Value
SQL Querysql
1--Site level profile option value
2 SELECT USER_PROFILE_OPTION_NAME, fpov.profile_option_value
3 FROM fnd_profile_option_values fpov, fnd_profile_options_vl fpo
4 WHERE fpov.profile_option_id(+) = fpo.profile_option_id
5 AND USER_PROFILE_OPTION_NAME IN
6 ('CSE: Debug Log Directory',
7 'CSE: Debug Option',
8 'CSI: Contracts Enabled') ---Profile Option Names
9 AND fpov.level_value(+) = '0'
10ORDER BY 1;
Query to get Organization level Profile Option Value
SQL Querysql
1--Organization level profile option value
2 SELECT NAME,
3 (SELECT fpov.profile_option_value
4 FROM fnd_profile_option_values fpov, fnd_profile_options_vl fpo
5 WHERE fpov.profile_option_id = fpo.profile_option_id
6 AND USER_PROFILE_OPTION_NAME = 'CSE: FA Book Type Code'
7 AND fpov.level_value = ORGANIZATION_ID)
8 profile_option_value
9 FROM hr_operating_units
10 WHERE NAME = 'Your Operating Unit Name'
11ORDER BY 1;For more reusable queries, click https://lightseagreen-goldfish-206721.hostingersite.com/category/technologyblog/oracle/
Related posts:
- Register a test concurrent program from backend in Oracle EBS
- Supervisor Hierarchy and Approval Limits in Oracle EBS R12
- Query to find vacation rules in Oracle R12
- View java class source in oracle database
- Load Java source code in oracle database
- Query to find all APIs of Oracle Apps modules
- OAF customizations queries
- Oracle apps list of concurrent programs in a Request Set
- Query to get Organization Hierarchy in Oracle apps
- Oracle apps query to find incompatible programs blocking a concurrent request
- Form function attached to which responsibility and user
- Query to find the responsibility attached to user in oracle apps