DBA Data[Home] [Help]

APPS.HRDPP_CREATE_IN_CONTACT_EXTRA_ 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 259: hr_data_pump.entry('call');

255: l_validate boolean := false;
256: L_CONTACT_RELATIONSHIP_ID number;
257: --
258: begin
259: hr_data_pump.entry('call');
260: open cr;
261: fetch cr into c;
262: if cr%notfound then
263: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 280: hr_data_pump.api_trc_on;

276: (P_CONTACT_USER_KEY => c.p31
277: ,P_CONTACTEE_USER_KEY => c.p32);
278: end if;
279: --
280: hr_data_pump.api_trc_on;
281: hr_in_contact_extra_info_api.create_in_contact_extra_info
282: (p_validate => l_validate
283: ,P_EFFECTIVE_DATE => c.p1
284: ,P_CONTACT_RELATIONSHIP_ID => L_CONTACT_RELATIONSHIP_ID

Line 314: hr_data_pump.api_trc_off;

310: ,P_CONTACT_EXTRA_INFO_ID => c.p27
311: ,P_OBJECT_VERSION_NUMBER => c.p28
312: ,P_EFFECTIVE_START_DATE => c.p29
313: ,P_EFFECTIVE_END_DATE => c.p30);
314: hr_data_pump.api_trc_off;
315:
316: --
317: update hr_pump_batch_lines l set
318: l.pval027 = decode(c.p27,null,cn,c.p27),

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

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