/ Published in: SQL
A slight adaptation on the sql in the Oracle Forum
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
SELECT fp.level_id, fp.level_value, fp.profile_option_value, fu.description ,user_profile_option_name, fpo.profile_option_name FROM fnd_profile_options_vl fpo ,fnd_profile_option_values fp ,fnd_user fu WHERE fpo.APPLICATION_ID = fp.application_id AND fpo.PROFILE_OPTION_ID = fp.profile_option_id AND fu.user_id = fp.last_updated_by --and fpo.profile_option_name = 'AFLOG_ENABLED' AND fpo.user_profile_option_name = 'FND: Debug Log Enabled';
URL: https://forums.oracle.com/forums/thread.jspa?messageID=4017914