0% found this document useful (0 votes)
44 views

Script To Find Request Group of Attached Concurrent Program

This SQL query selects the concurrent program name, type, short name, request group name, and application name from various tables in the Oracle E-Business Suite database where the user concurrent program name is equal to 'Capitalization Sheet Report'. It joins tables fnd_request_groups, fnd_request_group_units, fnd_concurrent_programs, fnd_concurrent_programs_tl, fnd_application, and fnd_application_tl to retrieve the requested data.
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
44 views

Script To Find Request Group of Attached Concurrent Program

This SQL query selects the concurrent program name, type, short name, request group name, and application name from various tables in the Oracle E-Business Suite database where the user concurrent program name is equal to 'Capitalization Sheet Report'. It joins tables fnd_request_groups, fnd_request_group_units, fnd_concurrent_programs, fnd_concurrent_programs_tl, fnd_application, and fnd_application_tl to retrieve the requested data.
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

SELECT con_prog.

user_concurrent_program_name,

DECODE(rgu.request_unit_type,

'P', 'Program',

'S', 'Set',

rgu.request_unit_type) "Type",

cp.concurrent_program_name "Concurrent Program Short Name",

rg.request_group_name ,

appl_fat.application_name "Application Name"

FROM fnd_request_groups rg,

fnd_request_group_units rgu,

fnd_concurrent_programs cp,

fnd_concurrent_programs_tl con_prog,

fnd_application appl_fa,

fnd_application_tl appl_fat

WHERE rg.request_group_id = rgu.request_group_id

AND rgu.request_unit_id = cp.concurrent_program_id

AND cp.concurrent_program_id = con_prog.concurrent_program_id

AND rg.application_id = appl_fat.application_id

AND appl_fa.application_id = appl_fat.application_id

AND con_prog.user_concurrent_program_name = 'Capitalization Sheet Report';

You might also like