How to Find function/form for given responsibility [message #270549] |
Thu, 27 September 2007 08:25 |
mujjbur
Messages: 13 Registered: August 2007
|
Junior Member |
|
|
Hi Members/Experts,
This is muzibur rahman. I am a new member of OraFAQ Forum.I need a request from you all.
I have list of Responsibility Names.
I want to find the Functions and Form Names in which those responsibilities are attached to.
Please help me in this regard. Please provide me the Script if possible.
Regards,
Muzibur Rahman
|
|
|
|
|
|
|
|
|
Re: How to Find function/form for given responsibility [message #274591 is a reply to message #273979] |
Tue, 16 October 2007 09:07 |
mujjbur
Messages: 13 Registered: August 2007
|
Junior Member |
|
|
Hi Vamsi,
I am herewith posting the query
SELECT FFF.FUNCTION_NAME, FF.FORM_NAME, FR.RESPONSIBILITY_NAME
FROM FND_RESPONSIBILITY_VL FR, FND_MENU_ENTRIES_VL FME,
FND_FORM_FUNCTIONS_VL FFF, FND_FORM_VL FF
WHERE FR.MENU_ID = FME.MENU_ID
AND FME.MENU_ID = FME.SUB_MENU_ID
AND FME.FUNCTION_ID = FFF.FUNCTION_ID
AND FFF.FORM_ID = FF.FORM_ID
AND FR.RESPONSIBILITY_NAME = '&RESP_NAME'
Please help me in this query.
Please modify the query if required and post your query.
Thanks & Regards,
Muzibur
|
|
|
|