Find the most recent changes to E-Business Suite profile options
https://gist.github.com/792692
https://gist.github.com/792692
-- last_profile_changes.sql-- Author: John Piwowar-- Purpose: Lists EBS profile options, in descending order of date set-- Notes: Prompts for number of items to display-- May need additional tweaking for multi-language installations-- You'll probably want to change linesize and column widths to-- something a more sane.set pagesize 9999set linesize 80set verify offcol "Profile Option" for a15col "Option Level" for a13col "Value" for a15col "Set On" for a9col "Scoldee" for a15select * from(select tl.user_profile_option_name "Profile Option",decode(val.level_id,10001, 'Site',10002, 'Application',10003, 'Responsibility',10004, 'User',10005, 'Server',10006, 'Organization',10007, 'Server+Resp','No idea, boss') "Option Level",val.profile_option_value "Value",val.last_update_date "Set on",usr.user_name "Scoldee"from fnd_profile_options opt,fnd_profile_option_values val,fnd_profile_options_tl tl,fnd_user usrwhere opt.profile_option_id = val.profile_option_idand opt.profile_option_name = tl.profile_option_nameand usr.user_id = val.last_updated_byorder by val.last_update_date desc)where rownum <= &number_of_items;exit;
No comments:
Post a Comment