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

Popular posts from this blog

Create attachments and attach them to Sales Order Header or Order Lines

Link XLA Tables With AR Tables To Get Information From GL