0% found this document useful (0 votes)
6 views1 page

Resp Finder

The SQL query retrieves distinct user concurrent program names, concurrent program names, application names, request group names, and responsibility names from various application tables. It joins multiple tables based on application and request group relationships, filtering for a specific program name and language. The result set is limited to entries where the language is set to 'US' for both applications and responsibilities.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views1 page

Resp Finder

The SQL query retrieves distinct user concurrent program names, concurrent program names, application names, request group names, and responsibility names from various application tables. It joins multiple tables based on application and request group relationships, filtering for a specific program name and language. The result set is limited to entries where the language is set to 'US' for both applications and responsibilities.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

SELECT DISTINCT fcpl.

user_concurrent_program_name,
fcp.concurrent_program_name,
fapp.application_name,
frg.request_group_name,
fnrtl.responsibility_name
FROM apps.fnd_request_groups frg,
apps.fnd_application_tl fapp,
apps.fnd_request_group_units frgu,
apps.fnd_concurrent_programs fcp,
apps.fnd_concurrent_programs_tl fcpl,
apps.fnd_responsibility fnr,
apps.fnd_responsibility_tl fnrtl
WHERE frg.application_id = fapp.application_id
AND frg.application_id = frgu.application_id
AND frg.request_group_id = frgu.request_group_id
AND frg.request_group_id = fnr.request_group_id
AND fnr.responsibility_id = fnrtl.responsibility_id
AND frgu.request_unit_id = fcp.concurrent_program_id
AND frgu.unit_application_id = fcp.application_id
AND fcp.concurrent_program_id = fcpl.concurrent_program_id
AND fcpl.user_concurrent_program_name LIKE
'PROGRAM NAME'
AND fnrtl.LANGUAGE = 'US'
AND fapp.LANGUAGE = 'US'

You might also like