Responsibilities and Forms Access (merged 2 threads) [message #259382] |
Wed, 15 August 2007 07:11 |
mujjbur
Messages: 13 Registered: August 2007
|
Junior Member |
|
|
Hi,
I am new member of Orafaq website and this forum. I need a help from the users. I am Oracle Apps Technical Person newly engaged in writing scripts and queries to fetch data from fnd tables. I have an urgent request as follows.
I need to have a list of ORACLE users of who has which responsibility. Could retrieve this information for people belonging to org:PBJ and its each responsibilities. I would like to know the method too if possible ASAP.
Thanks in Advance.
Muzibur
|
|
|
|
|
|
|
|
|
|
|
|
Responsiblities and Forms Access [message #261638 is a reply to message #259382] |
Thu, 23 August 2007 03:21 |
mujjbur
Messages: 13 Registered: August 2007
|
Junior Member |
|
|
Can someone please help me in this regard. Its very urgent and so kind of you.
I need to get of list of responsibilities and their corresponding forms access.
Please provide the script if possible.
I am talking about fnd_tables in Oracle Apps.
Thanks in Advance.
Muzibur
|
|
|
Re: To get users and their responsibilities belongs to a particular org(Please Very Urgent) [message #261766 is a reply to message #261432] |
Thu, 23 August 2007 09:37 |
mujjbur
Messages: 13 Registered: August 2007
|
Junior Member |
|
|
Hi Vamsi,
Thanks for your help. I have posted my query in this. Please help me in correcting this. Kindly give your ideas. Correct me where ever i am wrong.
Thanks a lot once again.
Here we go,
SELECT fu.user_name,fu.description,furg.start_date,
frvl.responsibility_name,fff.function_name,ff.form_name
FROM fnd_user fu,fnd_user_resp_groups furg,fnd_responsibility_vl frvl,
fnd_compiled_menu_functions fcmf,fnd_form_functions_vl fff,fnd_form_vl ff
WHERE fu.user_id = furg.user_id
AND furg.responsibility_id = frvl.responsibility_id
AND frvl.menu_id = fcmf.menu_id
AND fff.function_id = fcmf.function_id
AND fff.form_id = ff.form_id
AND (fu.end_date IS NULL OR fu.end_date >= SYSDATE)
AND (furg.end_date IS NULL OR furg.end_date >= SYSDATE)
AND (frvl.end_date IS NULL OR frvl.end_date >= SYSDATE)
AND form_name IN ('QPXPRLST','INVADPPI','APXVDDUP','FNDPOMSV','FNDRSRUN','BOMFDBOM','INVADCSC')
Please reply me back, expecting your reply.
Regards,
Muzibur
|
|
|
|
|