DBA Data[Home] [Help]

APPS.AP_WEB_OA_REPORTING_UTIL dependencies on FND_FUNCTION_SECURITY

Line 195: | Description: This function is wrapper to FND_FUNCTION_SECURITY.MENU_ENTRY_EXISTS

191:
192: /*=========================================================================================
193: | Function MENU_ENTRY_EXISTS
194: |
195: | Description: This function is wrapper to FND_FUNCTION_SECURITY.MENU_ENTRY_EXISTS
196: | Function call needs to be be used in sql and henceforth should
197: | return a varchar.
198: |
199: |

Line 212: IF FND_FUNCTION_SECURITY.MENU_ENTRY_EXISTS(p_menu_name, '', p_function_name) THEN

208: IS
209:
210: BEGIN
211: -- call fnd function which returns boolean, return 'Y' for true else return 'N'
212: IF FND_FUNCTION_SECURITY.MENU_ENTRY_EXISTS(p_menu_name, '', p_function_name) THEN
213: RETURN 'Y';
214: ELSE
215: RETURN 'N';
216: END IF;