DBA Data[Home] [Help]

APPS.MO_GLOBAL dependencies on FND_SESSION_MANAGEMENT

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

759: init(p_appl_short_name,'Y');
760:
761: if g_current_org_id is not null
762: then
763: fnd_session_management.putSessionAttributeValue(p_name => 'JTTCURRENTORG',
764: p_value => g_current_org_id,
765: p_session_id => p_icx_session_id);
766: end if;
767: end jtt_init;

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

777: PROCEDURE clear_current_org_context(p_icx_session_id IN NUMBER)
778: IS
779: BEGIN
780: dbms_session.set_context('multi_org2', 'current_org_id', '');
781: fnd_session_management.clearSessionAttributeValue(p_name => 'JTTCURRENTORG',
782: p_session_id => p_icx_session_id);
783: g_current_org_id := NULL;
784: END;
785: