DBA Data[Home] [Help]

APPS.MO_GLOBAL dependencies on FND_SESSION_MANAGEMENT

Line 668: fnd_session_management.putSessionAttributeValue(p_name => 'JTTCURRENTORG',

664: init(p_appl_short_name,'Y');
665:
666: if g_current_org_id is not null
667: then
668: fnd_session_management.putSessionAttributeValue(p_name => 'JTTCURRENTORG',
669: p_value => g_current_org_id,
670: p_session_id => p_icx_session_id);
671: end if;
672: end jtt_init;

Line 686: fnd_session_management.clearSessionAttributeValue(p_name => 'JTTCURRENTORG',

682: PROCEDURE clear_current_org_context(p_icx_session_id IN NUMBER)
683: IS
684: BEGIN
685: dbms_session.set_context('multi_org2', 'current_org_id', '');
686: fnd_session_management.clearSessionAttributeValue(p_name => 'JTTCURRENTORG',
687: p_session_id => p_icx_session_id);
688: g_current_org_id := NULL;
689: END;
690: