DBA Data[Home] [Help]

APPS.FND_CONC_PP dependencies on FND_GLOBAL

Line 18: internal_messages := internal_messages || msg || fnd_global.newline;

14: -- Set the contents of the message buffer
15: --
16: PROCEDURE message_add(msg VARCHAR2) IS
17: BEGIN
18: internal_messages := internal_messages || msg || fnd_global.newline;
19: END;
20:
21:
22: --

Line 186: login_id := fnd_global.login_id;

182: return(-1);
183: end;
184:
185: begin
186: login_id := fnd_global.login_id;
187:
188: user_id := FND_GLOBAL.user_id;
189: if (user_id is null) then
190: user_id := -1;

Line 188: user_id := FND_GLOBAL.user_id;

184:
185: begin
186: login_id := fnd_global.login_id;
187:
188: user_id := FND_GLOBAL.user_id;
189: if (user_id is null) then
190: user_id := -1;
191: end if;
192: Exception when others then

Line 241: fnd_global.login_id, user_id, app_id, exec_id,

237: Argument6, Argument7, Argument8, Argument9, Argument10,
238: SEQUENCE, OPS_INSTANCE)
239: Select Req_ID, 4, S_Flag, W_Flag,
240: F_Flag, sysdate, user_id, sysdate,
241: fnd_global.login_id, user_id, app_id, exec_id,
242: Arg1, Arg2, Arg3, Arg4, Arg5, Arg6, Arg7, Arg8, Arg9, Arg10,
243: step_id, ins_num from dual;
244: Exception when others then
245: message_add('Error while inserting into fnd_conc_pp_actions.');