DBA Data[Home] [Help]

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

315: L_PERSON_ID number;
316: L_COUNTRY varchar2(2000);
317: --
318: begin
319: hr_data_pump.entry('call');
320: open cr;
321: fetch cr into c;
322: if cr%notfound then
323: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 364: hr_data_pump.api_trc_on;

360: hr_pump_get.GET_COUNTRY
361: (P_COUNTRY => c.p39);
362: end if;
363: --
364: hr_data_pump.api_trc_on;
365: hr_in_person_address_api.create_in_person_address
366: (p_validate => l_validate
367: ,P_EFFECTIVE_DATE => c.p1
368: ,P_PRADD_OVLAPVAL_OVERRIDE => L_PRADD_OVLAPVAL_OVERRIDE

Line 406: hr_data_pump.api_trc_off;

402: ,P_ADDR_ATTRIBUTE19 => c.p34
403: ,P_ADDR_ATTRIBUTE20 => c.p35
404: ,P_ADDRESS_ID => L_ADDRESS_ID
405: ,P_OBJECT_VERSION_NUMBER => c.p37);
406: hr_data_pump.api_trc_off;
407: --
408: iuk(p_batch_line_id,c.p36,L_ADDRESS_ID);
409: --
410: update hr_pump_batch_lines l set

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

413: where l.rowid = c.myrowid;
414: --
415: close cr;
416: --
417: hr_data_pump.exit('call');
418: exception
419: when hr_multi_message.error_message_exist then
420: if cr%isopen then
421: close cr;