SELECT fpo.profile_option_name, fpo.profile_option_id, fpov.profile_option_value, fpov.level_id, fa.application_short_name, fpo.user_profile_option_name, fpo.sql_validation, fpo.description FROM apps.FND_PROFILE_OPTIONS_VL fpo, apps.FND_PROFILE_OPTION_VALUES fpov, apps.fnd_application fa where fpo.application_id = 0 and fpo.site_enabled_flag = 'Y' and (fpo.profile_option_name like 'CONC_%' or fpo.profile_option_name like 'FS_%' or fpo.profile_option_name like 'PRINTER%' or fpo.profile_option_name in ('EDITOR_CHAR', 'FNDCPVWR_FONT_SIZE', 'MAX_PAGE_LENGTH', 'APPLWRK')) and fpo.profile_option_id = fpov.profile_option_id and fpo.application_id = fpov.application_id and fpo.application_id = fa.application_id and fpov.level_id = 10001;