Query to find who and when update an Oracle Application user’s profile
SELECT t.user_profile_option_name, profile_option_value,v.creation_date,v.last_update_date,v.creation_date v.last_update_date “Change Date”,(SELECT UNIQUE user_nameFROM fnd_userWHERE user_id = v.created_by) “Created By”,(SELECT user_nameFROM fnd_userWHERE user_id = v.last_updated_by) “Last Update By”FROM fnd_profile_options o,fnd_profile_option_values v,fnd_profile_options_tl tWHERE o.profile_option_id = v.profile_option_idAND o.application_id = v.application_idAND start_date_active <= SYSDATEAND NVL (end_date_active, SYSDATE) >= SYSDATEAND o.profile_option_name = t.profile_option_nameAND level_id = 10001AND t.LANGUAGE IN (SELECT language_codeFROM fnd_languagesWHERE installed_flag = ‘B’UNIONSELECT nls_languageFROM […]
Recent Comments