| Script |
kintana_scripts_oracle_applications_kintana_validation_concurrent_programs
-- Change the INSTANCE to match your naming conventions:
-- e,g : dev, qa, perf, prod
select fcp.concurrent_program_name,
fcp.user_concurrent_program_name
from FND_CONCURRENT_PROGRAMS_vl@INSTANCE_link fcp
where fcp.application_id in
(select fa.application_id
from FND_APPLICATION@INSTANCE_link fa
where fa.application_short_name like 'AP' -- '%[P.P_APP_SHORT_NAME]'
)
order by 2
|