DBA Data[Home] [Help]

APPS.AP_WEB_AUDIT_QUEUE_UTILS dependencies on FND_FUNCTION

Line 738: | Wrapper around FND_FUNCTION.IS_FUNCTION_ON_MENU() which returns 'Y' or

734: /*========================================================================
735: | PUBLIC FUNCTION report_weight
736: |
737: | DESCRIPTION
738: | Wrapper around FND_FUNCTION.IS_FUNCTION_ON_MENU() which returns 'Y' or
739: | 'N' instead of true/false
740: |
741: | CALLED FROM PROCEDURES/FUNCTIONS (local to this package body)
742: |

Line 765: l_ret_val := fnd_function.is_function_on_menu(p_menu_id, p_function_id);

761: l_ret_val BOOLEAN;
762: l_check_grant_flag BOOLEAN;
763: BEGIN
764: IF p_check_grant_flag IS NULL THEN
765: l_ret_val := fnd_function.is_function_on_menu(p_menu_id, p_function_id);
766: ELSE
767: IF p_check_grant_flag = 'Y' THEN
768: l_check_grant_flag := true;
769: ELSE

Line 772: l_ret_val := fnd_function.is_function_on_menu(p_menu_id, p_function_id, l_check_grant_flag);

768: l_check_grant_flag := true;
769: ELSE
770: l_check_grant_flag := false;
771: END IF;
772: l_ret_val := fnd_function.is_function_on_menu(p_menu_id, p_function_id, l_check_grant_flag);
773: END IF;
774: IF l_ret_val THEN
775: RETURN 'Y';
776: ELSE