DBA Data[Home] [Help]

APPS.HRDPP_CREATE_ORGANIZATION_STRU dependencies on HR_DATA_PUMP

Line 65: hr_data_pump.entry('ins_user_key');

61: p_user_key_value in varchar2,
62: p_unique_key_id in number)
63: is
64: begin
65: hr_data_pump.entry('ins_user_key');
66: insert into hr_pump_batch_line_user_keys
67: (user_key_id, batch_line_id,user_key_value,unique_key_id)
68: values
69: (hr_pump_batch_line_user_keys_s.nextval,

Line 73: hr_data_pump.exit('ins_user_key');

69: (hr_pump_batch_line_user_keys_s.nextval,
70: p_batch_line_id,
71: p_user_key_value,
72: p_unique_key_id);
73: hr_data_pump.exit('ins_user_key');
74: end iuk;
75: --
76: procedure insert_batch_lines
77: (p_batch_id in number

Line 262: hr_data_pump.entry('call');

258: L_PROGRAM_APPLICATION_ID number;
259: L_PROGRAM_ID number;
260: --
261: begin
262: hr_data_pump.entry('call');
263: open cr;
264: fetch cr into c;
265: if cr%notfound then
266: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 282: hr_data_pump.api_trc_on;

278: --
279: L_PROGRAM_ID :=
280: hr_pump_get.get_program_id;
281: --
282: hr_data_pump.api_trc_on;
283: PER_ORGANIZATION_STRUCTURE_API.CREATE_ORGANIZATION_STRUCTURE
284: (p_validate => l_validate
285: ,P_EFFECTIVE_DATE => c.p1
286: ,P_NAME => c.p2

Line 318: hr_data_pump.api_trc_off;

314: ,P_ATTRIBUTE20 => c.p26
315: ,P_POSITION_CONTROL_STRUCTURE_F => c.p27
316: ,P_ORGANIZATION_STRUCTURE_ID => L_ORGANIZATION_STRUCTURE_ID
317: ,P_OBJECT_VERSION_NUMBER => c.p29);
318: hr_data_pump.api_trc_off;
319: --
320: iuk(p_batch_line_id,c.p28,L_ORGANIZATION_STRUCTURE_ID);
321: --
322: update hr_pump_batch_lines l set

Line 329: hr_data_pump.exit('call');

325: where l.rowid = c.myrowid;
326: --
327: close cr;
328: --
329: hr_data_pump.exit('call');
330: exception
331: when hr_multi_message.error_message_exist then
332: if cr%isopen then
333: close cr;