DBA Data[Home] [Help]

APPS.AHL_UTIL_PKG dependencies on AHL_DEBUG_PUB

Line 89: AHL_DEBUG_PUB.debug( 'entering Get_User_Role' );

85: l_user_role VARCHAR2(30);
86:
87: BEGIN
88:
89: AHL_DEBUG_PUB.debug( 'entering Get_User_Role' );
90:
91: IF ( upper(p_function_key) = 'AHL_DI_VIEW') THEN
92: IF (FND_FUNCTION.TEST('AHL_DI_VIEW')) THEN
93: -- Document Index: View Only User

Line 119: AHL_DEBUG_PUB.debug( l_user_role );

115: l_user_role := 'AHL_FMP_VIEW';
116: END IF;
117: END IF;
118:
119: AHL_DEBUG_PUB.debug( l_user_role );
120:
121: RETURN l_user_role;
122:
123: EXCEPTION