DBA Data[Home] [Help]

APPS.OKL_DEBUG_PUB dependencies on FND_GLOBAL

Line 112: -- fnd_global.session_id like fnd_global.user_id, so we have to

108: Procedure Set_Connection_Context Is
109: --
110: -- This procedure makes sure that we are in the same session in
111: -- order to use any globals. Unfortunately we do not have any
112: -- fnd_global.session_id like fnd_global.user_id, so we have to
113: -- use context to cache it.
114: --
115: l_session_id Varchar2(30);
116: l_user_id Number;

Line 129: -- fnd_global.apps_initialize once again so that the

125: (g_session_id <> l_session_id) Then
126: g_session_id := l_session_id;
127: --
128: -- Now if we are in new session, we need to call the
129: -- fnd_global.apps_initialize once again so that the
130: -- AOL Logging profiles are set correctly.
131: --
132: l_user_id := Fnd_Global.User_Id;
133: l_resp_id := Fnd_Global.Resp_Id;

Line 132: l_user_id := Fnd_Global.User_Id;

128: -- Now if we are in new session, we need to call the
129: -- fnd_global.apps_initialize once again so that the
130: -- AOL Logging profiles are set correctly.
131: --
132: l_user_id := Fnd_Global.User_Id;
133: l_resp_id := Fnd_Global.Resp_Id;
134: l_resp_appl_id := Fnd_Global.Resp_Appl_Id;
135:
136: Fnd_Global.Apps_Initialize(user_id => l_user_id,

Line 133: l_resp_id := Fnd_Global.Resp_Id;

129: -- fnd_global.apps_initialize once again so that the
130: -- AOL Logging profiles are set correctly.
131: --
132: l_user_id := Fnd_Global.User_Id;
133: l_resp_id := Fnd_Global.Resp_Id;
134: l_resp_appl_id := Fnd_Global.Resp_Appl_Id;
135:
136: Fnd_Global.Apps_Initialize(user_id => l_user_id,
137: resp_id => l_resp_id,

Line 134: l_resp_appl_id := Fnd_Global.Resp_Appl_Id;

130: -- AOL Logging profiles are set correctly.
131: --
132: l_user_id := Fnd_Global.User_Id;
133: l_resp_id := Fnd_Global.Resp_Id;
134: l_resp_appl_id := Fnd_Global.Resp_Appl_Id;
135:
136: Fnd_Global.Apps_Initialize(user_id => l_user_id,
137: resp_id => l_resp_id,
138: resp_appl_id => l_resp_appl_id);

Line 136: Fnd_Global.Apps_Initialize(user_id => l_user_id,

132: l_user_id := Fnd_Global.User_Id;
133: l_resp_id := Fnd_Global.Resp_Id;
134: l_resp_appl_id := Fnd_Global.Resp_Appl_Id;
135:
136: Fnd_Global.Apps_Initialize(user_id => l_user_id,
137: resp_id => l_resp_id,
138: resp_appl_id => l_resp_appl_id);
139:
140: g_profile_log_level := Fnd_Log.G_CURRENT_RUNTIME_LEVEL;