DBA Data[Home] [Help]

APPS.FND_SESSION_MANAGEMENT dependencies on WF_CORE

Line 240: WF_CORE.CONTEXT('fnd_session_management', 'doNewSessionEvent',p_evtMsg.getEventName( ), p_guid);

236: FROM fnd_user
237: WHERE user_id=l_user_id;
238: EXCEPTION
239: WHEN OTHERS THEN
240: WF_CORE.CONTEXT('fnd_session_management', 'doNewSessionEvent',p_evtMsg.getEventName( ), p_guid);
241: WF_EVENT.setErrorInfo(p_evtMsg, 'ERROR');
242: return 'ERROR';
243: END;
244:

Line 252: WF_CORE.CONTEXT('fnd_session_management', 'doNewSessionEvent',p_evtMsg.getEventName( ), p_guid);

248: FROM wf_event_subscriptions
249: WHERE guid=p_guid;
250: EXCEPTION
251: WHEN no_data_found THEN
252: WF_CORE.CONTEXT('fnd_session_management', 'doNewSessionEvent',p_evtMsg.getEventName( ), p_guid);
253: WF_EVENT.setErrorInfo(p_evtMsg, 'ERROR');
254: return 'ERROR';
255: END;
256:

Line 267: WF_CORE.CONTEXT('fnd_session_management', 'doNewSessionEvent',p_evtMsg.getEventName( ), p_guid);

263: AND session_id <> l_session_id;
264: COMMIT;
265: EXCEPTION
266: WHEN OTHERS THEN
267: WF_CORE.CONTEXT('fnd_session_management', 'doNewSessionEvent',p_evtMsg.getEventName( ), p_guid);
268: WF_EVENT.setErrorInfo(p_evtMsg, 'ERROR');
269: return 'ERROR';
270: END;
271: NULL;