Query to check concurrent program type and Executable name
select fcptl.concurrent_program_id,fcptl.user_concurrent_program_name,fcptl.description,fcp.Concurrent_program_name,flv.meaning execution_method,fe.execution_file_name
from
apps.fnd_concurrent_programs_tl fcptl,
apps.fnd_concurrent_programs fcp,
apps.fnd_executables fe,
apps.fnd_lookup_values flv
where fcptl.concurrent_program_id = fcp.concurrent_program_id
and fcp.executable_id = fe.executable_id
and fe.execution_method_code = flv.lookup_code
and fcptl.language = 'US'
and flv.language = 'US'
and flv.lookup_type='CP_EXECUTION_METHOD_CODE'
and fcptl.user_concurrent_program_name = '< Cong Program Name>';
from
apps.fnd_concurrent_programs_tl fcptl,
apps.fnd_concurrent_programs fcp,
apps.fnd_executables fe,
apps.fnd_lookup_values flv
where fcptl.concurrent_program_id = fcp.concurrent_program_id
and fcp.executable_id = fe.executable_id
and fe.execution_method_code = flv.lookup_code
and fcptl.language = 'US'
and flv.language = 'US'
and flv.lookup_type='CP_EXECUTION_METHOD_CODE'
and fcptl.user_concurrent_program_name = '< Cong Program Name>';
Comments
Post a Comment