| Script |
kintana_scripts_oracle_applications_validation_application_short_names
-- Change the INSTANCE to match your naming conventions:
-- e,g : dev, qa, perf, prod
select fa.application_short_name,
fa.application_short_name
from FND_APPLICATION@INSTANCE_link fa
where fa.application_id in
(select distinct fcp.application_id
from FND_CONCURRENT_PROGRAMS@INSTANCE_link fcp
)
order by 1
|