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

Query To Get Request Set Responsibility Details in r12

This SQL query selects responsibility name, request set name, request set stage ID, and user stage name from several Oracle Applications tables where the request set name is 'XX : FND Audit Report Set', ordering by responsibility name, request set stage ID, request set name, and user stage name.

Uploaded by

Balu bala
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)
99 views1 page

Query To Get Request Set Responsibility Details in r12

This SQL query selects responsibility name, request set name, request set stage ID, and user stage name from several Oracle Applications tables where the request set name is 'XX : FND Audit Report Set', ordering by responsibility name, request set stage ID, request set name, and user stage name.

Uploaded by

Balu bala
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

frt.responsibility_name,
fcpt.user_request_set_name,
frst.request_set_stage_id,
frst.user_stage_name
FROM
apps.fnd_responsibility fr,
apps.fnd_responsibility_tl frt,
apps.fnd_request_groups frg,
apps.fnd_request_group_units frgu,
apps.fnd_request_sets_tl fcpt,
fnd_request_set_stages_tl frst
WHERE
frt.responsibility_id = fr.responsibility_id
AND frg.request_group_id = fr.request_group_id
AND frgu.request_group_id = frg.request_group_id
AND fcpt.request_set_id = frgu.request_unit_id
AND frst.request_set_id = fcpt.request_set_id
AND frst.language = fcpt.language
AND frt.language = userenv('LANG')
AND fcpt.language = userenv('LANG')
AND fcpt.user_request_set_name = 'XX : FND Audit Report Set'
ORDER BY
frt.responsibility_name,
frst.request_set_stage_id,
fcpt.user_request_set_name,
frst.user_stage_name

You might also like