This blog is about to find list of forms in oracle application which has been
customized using Forms Personlization.
This script will be very useful to identify the customization while migrating and also will usefull to prepare
Customization lisits while upgrading ,reimplementation
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
It is an effort to make my blog a Knowledge repository and Solution Center which provides unique technical and functional solutions for EBS professionals.
ORACLE
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment