Script to find all the Oracle Applications Forms that were Customized using Forms Personalization
select distinct a.form_name, a.enabled, c.user_form_name, d.application_name
from fnd_form_custom_rules a,
fnd_form b,
fnd_form_tl c,
fnd_application_tl d
where
enabled = ‘Y’
and a.form_name = b.form_name
and b.form_id = c.form_id
and b.application_id = d.application_id
order by application_name
Comments
Post a Comment