SELECT fpov.profile_option_value, fr.*
FROM applsys.fnd_profile_option_values fpov
, applsys.fnd_profile_options fpo
, applsys.fnd_profile_options_tl fpot
, applsys.fnd_responsibility_tl fr
WHERE 1 = 1
AND fpo.profile_option_name = fpot.profile_option_name
AND fpo.profile_option_id = fpov.profile_option_id
AND fr.responsibility_id(+) = fpov.level_value
and fpot.language = 'US'
and fr.language = 'US'
AND fpot.profile_option_name = 'ORG_ID'
and fr.responsibility_name like '%XX%OM%Manager%';
FROM applsys.fnd_profile_option_values fpov
, applsys.fnd_profile_options fpo
, applsys.fnd_profile_options_tl fpot
, applsys.fnd_responsibility_tl fr
WHERE 1 = 1
AND fpo.profile_option_name = fpot.profile_option_name
AND fpo.profile_option_id = fpov.profile_option_id
AND fr.responsibility_id(+) = fpov.level_value
and fpot.language = 'US'
and fr.language = 'US'
AND fpot.profile_option_name = 'ORG_ID'
and fr.responsibility_name like '%XX%OM%Manager%';
No comments:
Post a Comment