List Reponsibilities for an user

Posted by Jiltin     12 March, 2008    376 views   

I often get this issue to find out list of responsibilities assigned to an user, mainly to review the SOX controls or to enable new responsibilities.
Lazy enough to go to System Administrator screen to query it. I always keep the TOAD open session and it is easy to grab the details using this sql.

————————————————————————-
—     Author : Jay Gopal
————————————————————————-
SELECT fu.user_name,frt.RESPONSIBILITY_NAME, fu.user_id,furg.responsibility_id
FROM
fnd_user_resp_groups furg,
FND_RESPONSIBILITY fr,
fnd_responsibility_tl frt,
fnd_user fu
WHERE fu.user_name =upper( ‘&username’)
AND   fu.user_id = furg.user_id
AND   furg.responsibility_id = fr.RESPONSIBILITY_ID
AND   frt.responsibility_id = fr.RESPONSIBILITY_ID
ORDER BY 1

[Post to Twitter]  [Post to Delicious]  [Post to Digg]    [Post to StumbleUpon] 

Categories : 11i Scripts, Oracle AOL Tags : , ,

Comments
June 3, 2009

Hi, good post. I have been wondering about this issue,so thanks for posting. I’ll definitely be coming back

Posted by Bill Brown jr
Leave a comment

(required)

(required)