DBA Data[Home] [Help]

APPS.GL_CI_REMOTE_INVOKE_PKG dependencies on FND_FUNCTION

Line 404: --+Can not use fnd_function.test to test the accessiblility of GL_SU_J_IMPORT

400:
401: end Validate_Resp;
402: --+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
403: --+Check for Oracle Application Menu exclusion for Journal Import and Post
404: --+Can not use fnd_function.test to test the accessiblility of GL_SU_J_IMPORT
405: --+because it is a menu not a function. Therefore, is forced to access the
406: --+fnd_resp_functions table direcly to get the exclusion info for this menu
407: --+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
408: function Menu_Validation(

Line 436: IF (FND_FUNCTION.TEST('GLXJIRUN') = FALSE) THEN

432: --+ fnd_resp_functions contains all functions that are excluded from this responsibility
433: if l_count > 0 then
434: return 'IMPORT FAIL';
435: end if;
436: IF (FND_FUNCTION.TEST('GLXJIRUN') = FALSE) THEN
437: return 'IMPORT FAIL';
438: END IF;
439:
440: END IF;

Line 442: IF (FND_FUNCTION.TEST('GLXSTAPO') = FALSE) or (FND_FUNCTION.TEST('GLXJEPST') = FALSE) or

438: END IF;
439:
440: END IF;
441: IF (post_flag = 'Y' ) THEN
442: IF (FND_FUNCTION.TEST('GLXSTAPO') = FALSE) or (FND_FUNCTION.TEST('GLXJEPST') = FALSE) or
443: (FND_FUNCTION.TEST('GLXCOWRK_P') = FALSE) or (FND_FUNCTION.TEST('GLPAUTOP_A') = FALSE)THEN
444: return 'POST FAIL';
445: END IF;
446: END IF;

Line 443: (FND_FUNCTION.TEST('GLXCOWRK_P') = FALSE) or (FND_FUNCTION.TEST('GLPAUTOP_A') = FALSE)THEN

439:
440: END IF;
441: IF (post_flag = 'Y' ) THEN
442: IF (FND_FUNCTION.TEST('GLXSTAPO') = FALSE) or (FND_FUNCTION.TEST('GLXJEPST') = FALSE) or
443: (FND_FUNCTION.TEST('GLXCOWRK_P') = FALSE) or (FND_FUNCTION.TEST('GLPAUTOP_A') = FALSE)THEN
444: return 'POST FAIL';
445: END IF;
446: END IF;
447: