DBA Data[Home] [Help]

APPS.WFA_SEC dependencies on FND_SESSION_MANAGEMENT

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

1044: -- boolean - True if session matches, else False
1045: function CheckSession return boolean
1046: is
1047: begin
1048: if (wfa_sec.g_session_id = fnd_session_management.g_session_id) then
1049: -- Session has not changed from the previous one or the WF Code executes in the
1050: -- background where both are -1.
1051: return true;
1052: else

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

1050: -- background where both are -1.
1051: return true;
1052: else
1053: -- Cache current session id since it has changed
1054: wfa_sec.g_session_id := fnd_session_management.g_session_id;
1055: return false;
1056: end if;
1057: end CheckSession;
1058: