Query to find Request group name to which concurrent program is attached.
Below given query will give you details for concurrent program and request group to which CP is attached details.
Query :
SELECT fcpt.user_concurrent_program_name,
DECODE(frgu.request_unit_type,
'P', 'Program',
'S','Set',
frgu.request_unit_type) Request_Unit_Type,
fcp.concurrent_program_name short_name,
frg.application_id,
frg.request_group_name,
fat.application_name,
fa.application_short_name,
fa.basepath
FROM fnd_request_groups frg,
fnd_request_group_units frgu,
fnd_concurrent_programs fcp,
fnd_concurrent_programs_tl fcpt,
fnd_application fa,
fnd_application_tl fat
WHERE frg.request_group_id = frgu.request_group_id
AND frgu.request_unit_id = fcp.concurrent_program_id
AND fcp.concurrent_program_id = fcpt.concurrent_program_id
AND frg.application_id = fat.application_id
AND fa.application_id = fat.application_id
AND fcpt.language = USERENV('LANG')
AND fat.language = USERENV('LANG')
AND UPPER(fcpt.user_concurrent_program_name) like
UPPER('Trial Balance - Detail');
Query :
SELECT fcpt.user_concurrent_program_name,
DECODE(frgu.request_unit_type,
'P', 'Program',
'S','Set',
frgu.request_unit_type) Request_Unit_Type,
fcp.concurrent_program_name short_name,
frg.application_id,
frg.request_group_name,
fat.application_name,
fa.application_short_name,
fa.basepath
FROM fnd_request_groups frg,
fnd_request_group_units frgu,
fnd_concurrent_programs fcp,
fnd_concurrent_programs_tl fcpt,
fnd_application fa,
fnd_application_tl fat
WHERE frg.request_group_id = frgu.request_group_id
AND frgu.request_unit_id = fcp.concurrent_program_id
AND fcp.concurrent_program_id = fcpt.concurrent_program_id
AND frg.application_id = fat.application_id
AND fa.application_id = fat.application_id
AND fcpt.language = USERENV('LANG')
AND fat.language = USERENV('LANG')
AND UPPER(fcpt.user_concurrent_program_name) like
UPPER('Trial Balance - Detail');
Comments
Post a Comment