DBA Data[Home] [Help]

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

399: L_PERSON_ID number;
400: L_COUNTRY varchar2(2000);
401: --
402: begin
403: hr_data_pump.entry('call');
404: open cr;
405: fetch cr into c;
406: if cr%notfound then
407: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 461: hr_data_pump.api_trc_on;

457: hr_pump_get.GET_COUNTRY
458: (P_COUNTRY => c.p54);
459: end if;
460: --
461: hr_data_pump.api_trc_on;
462: HR_PERSON_ADDRESS_API.CREATE_PERSON_ADDRESS
463: (p_validate => l_validate
464: ,P_EFFECTIVE_DATE => c.p1
465: ,P_PRADD_OVLAPVAL_OVERRIDE => L_PRADD_OVLAPVAL_OVERRIDE

Line 518: hr_data_pump.api_trc_off;

514: ,P_ADD_INFORMATION20 => c.p49
515: ,P_PARTY_ID => c.p50
516: ,P_ADDRESS_ID => L_ADDRESS_ID
517: ,P_OBJECT_VERSION_NUMBER => c.p52);
518: hr_data_pump.api_trc_off;
519: --
520: iuk(p_batch_line_id,c.p51,L_ADDRESS_ID);
521: --
522: update hr_pump_batch_lines l set

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

525: where l.rowid = c.myrowid;
526: --
527: close cr;
528: --
529: hr_data_pump.exit('call');
530: exception
531: when hr_multi_message.error_message_exist then
532: if cr%isopen then
533: close cr;