select
a.concurrent_program_id,
a.concurrent_program_name,
b.user_concurrent_program_name,
c.executable_name,
c.execution_method_code,
(select meaning FROM apps.fnd_lookups
WHERE lookup_type like 'CP_EXECUTION_METHOD_CODE' and lookup_code= c.execution_method_code) type,
c.execution_file_name
from
apps.fnd_concurrent_programs a,
apps.fnd_concurrent_programs_tl b,
apps.fnd_executables c
where
a.concurrent_program_id=b.concurrent_program_id
and a.executable_id=c.executable_id
and lower(b.user_concurrent_program_name) like '%program_name%';
No comments:
Post a Comment