You are html tracking Visitor

Tuesday, July 29, 2008

Find out the Patch Level

Find out the Patch Level:-
------------------------------

You may need to find-out the patch level In some cases. Specially, this may required when you have created the tar with Oracle corp. The following statement is mostly run by DBA

select patch_level, application_name
from fnd_product_installations fpi
, fnd_application_tl fat
where patch_level is not null
and fpi.application_id = fat.application_id
order by application_name;

No comments: