DBA Data[Home] [Help]

APPS.HR_SECURITY_INTERNAL dependencies on FND_GLOBAL

Line 3109: -- fnd_global.apps_initialise call.

3105: -- Check whether the local cached version of the session context
3106: -- differs to the AOL session context.
3107: -- This is the most aggressive form of session change identification
3108: -- as the session_context should increment for each
3109: -- fnd_global.apps_initialise call.
3110: --
3111: -- This procedure is used primarily for ADF applications, where database
3112: -- sessions (and therefore cached PL/SQL values) are pooled and can
3113: -- be reused by a user that may have entirely different security permissions

Line 3123: fnd_global.session_context IS NULL OR

3119: -- No debug output is added here because this is called in each
3120: -- iteration of the secure view.
3121: --
3122: IF g_session_context IS NULL OR
3123: fnd_global.session_context IS NULL OR
3124: g_session_context <> fnd_global.session_context THEN
3125: RETURN TRUE;
3126: ELSE
3127: RETURN FALSE;

Line 3124: g_session_context <> fnd_global.session_context THEN

3120: -- iteration of the secure view.
3121: --
3122: IF g_session_context IS NULL OR
3123: fnd_global.session_context IS NULL OR
3124: g_session_context <> fnd_global.session_context THEN
3125: RETURN TRUE;
3126: ELSE
3127: RETURN FALSE;
3128: END IF;

Line 3144: g_session_context := fnd_global.session_context;

3140:
3141: --
3142: -- Cache the AOL session context locally.
3143: --
3144: g_session_context := fnd_global.session_context;
3145:
3146: END sync_session_context;
3147: --
3148: -- ----------------------------------------------------------------------------