DBA Data[Home] [Help]

APPS.WFA_SEC dependencies on FND_SESSION_MANAGEMENT

Line 1056: if (wfa_sec.g_session_id = fnd_session_management.g_session_id) then

1052: -- boolean - True if session matches, else False
1053: function CheckSession return boolean
1054: is
1055: begin
1056: if (wfa_sec.g_session_id = fnd_session_management.g_session_id) then
1057: -- Session has not changed from the previous one or the WF Code executes in the
1058: -- background where both are -1.
1059: return true;
1060: else

Line 1062: wfa_sec.g_session_id := fnd_session_management.g_session_id;

1058: -- background where both are -1.
1059: return true;
1060: else
1061: -- Cache current session id since it has changed
1062: wfa_sec.g_session_id := fnd_session_management.g_session_id;
1063: return false;
1064: end if;
1065: end CheckSession;
1066: