Query to find profile option values

Query to find profile option values
Oracle apps EBS profile option value query
query to check profile values in oracle apps
How to check profile options in Oracle apps from backend
Query to find profile option values at user and responsibility level
Profile option levels in Oracle Apps R12
query to get system profile values in oracle apps
oracle profile option table
oracle profile option values query
  SELECT fa.application_name,
         fpov.level_id,
         fa.application_short_name,
         fpo.USER_PROFILE_OPTION_NAME,
         fpo.PROFILE_OPTION_NAME,
         DECODE (fpov.level_id,
                 10001, 'Site',
                 10002, 'Application',
                 10003, 'Responsibility',
                 10004, 'User',
                 10005, 'Server',
                 10006, 'Organization',
                 10007, 'ServResp',
                 'Unknown')
            Level_name,
         DECODE (fpov.LEVEL_ID,
                 10001, NULL,
                 10002, fal.APPLICATION_NAME,
                 10003, frt.RESPONSIBILITY_NAME,
                 10004, fu.USER_NAME,
                 10005, svr.node_name,
                 10006, org.name,
                 10007,    (SELECT n.node_name
                              FROM fnd_nodes n
                             WHERE n.node_id = level_value2)
                        || '/'
                        || (DECODE (fpov.level_value,
                                    -1, 'Default',
                                    (SELECT responsibility_key
                                       FROM fnd_responsibility
                                      WHERE responsibility_id = level_value))),
                 fpov.level_id)
            Level_value,
         fpov.PROFILE_OPTION_VALUE
    FROM fnd_profile_options_vl  fpo,
         fnd_profile_option_values fpov,
         fnd_application_vl      fa,
         fnd_application_vl      fal,
         fnd_responsibility_vl   frt,
         fnd_user                fu,
         fnd_nodes               svr,
         hr_operating_units      org
   WHERE     fpo.profile_option_id = fpov.profile_option_id
         AND fa.application_id = fpo.application_id
         AND fpov.LEVEL_VALUE = fal.APPLICATION_ID(+)
         AND fpov.LEVEL_VALUE = frt.RESPONSIBILITY_ID(+)
         AND fpov.LEVEL_VALUE = fu.USER_ID(+)
         AND fpov.LEVEL_VALUE_APPLICATION_ID = frt.APPLICATION_ID(+)
         AND fpov.level_value = svr.node_id(+)
         AND fpov.level_value = org.organization_id(+)
         AND fpo.USER_PROFILE_OPTION_NAME LIKE
                '<profile option name>'
ORDER BY USER_PROFILE_OPTION_NAME;
Related posts: Upload your own post and refer it anywhere anytime:

Leave a Reply