Sign in or 

| Platform: | Oracle | App: | Application Object Library | Tool: | |
| DB Ver: | 9.2 | App Ver: | 11.5.8 | Tool Ver: | |
| Revision Date: | 03-Nov-2005 | Keywords: | HOWTO, PROFILES, PROFILE OPTIONS | ||
| Goal | |||||
| Find the various values at user, responsibility and site level for a particular profile option. | |||||
| Facts | |||||
| Solution | |||||
| Run the following sql script: SELECT fpo.user_profile_option_name ,fpo.profile_option_name ,site.profile_option_value site_val ,r.responsibility_name resp_name ,resp.profile_option_value resp_val ,fu.user_name ,usr.profile_option_value user_val FROM fnd_profile_options_vl fpo ,fnd_profile_option_values site ,fnd_profile_option_values resp ,fnd_responsibility_vl r ,fnd_profile_option_values usr ,fnd_user fu WHERE 1=1 AND UPPER( fpo.user_profile_option_name) LIKE '&profile_name' AND site.profile_option_id(+) = fpo.profile_option_id AND site.level_id(+) = 10001 AND resp.profile_option_id(+) = fpo.profile_option_id AND r.responsibility_id (+) = resp.level_value AND resp.level_id(+) = 10003 AND usr.profile_option_id(+) = fpo.profile_option_id AND usr.level_id(+) = 10004 AND fu.user_id(+) = usr.level_value ORDER BY 1 / | |||||
|
consultium |
Latest page update: made by consultium
, Oct 6 2009, 12:43 PM EDT
(about this update
About This Update
view changes - complete history) |
|
Keyword tags:
HOW TO
PROFILE OPTIONS
PROFILES
More Info: links to this page
|