Skip to content

Commit

Permalink
Update useful_fnd_queries.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
pradeep4ref authored Oct 1, 2024
1 parent c11174e commit a0f07f3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions useful_fnd_queries.sql
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,21 @@ SELECT fu.user_name
AND NVL(furg.end_date, SYSDATE + 1)
ORDER BY fu.user_name, furg.creation_date DESC;

-- Request Group Assignment
SELECT fr.responsibility_name
,frg.request_group_name
,fap.application_name
,frgu.request_unit_type
,frgu.request_unit_id
,fcpt.user_concurrent_program_name
FROM fnd_responsibility_vl fr
,fnd_application_vl fap
,fnd_request_groups frg
,fnd_request_group_units frgu
,fnd_concurrent_programs_vl fcpt
WHERE frg.request_group_id = fr.request_group_id
AND frg.application_id = fap.application_id
AND frgu.request_group_id = frg.request_group_id
AND fcpt.concurrent_program_id = frgu.request_unit_id
AND fcpt.user_concurrent_program_name = 'GL SubLedger Period Status Report'
ORDER BY 1,2,3,4;

0 comments on commit a0f07f3

Please sign in to comment.