DBA Data[Home] [Help]

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

365: L_PERSON_ID number;
366: L_COUNTRY varchar2(2000);
367: --
368: begin
369: hr_data_pump.entry('call');
370: open cr;
371: fetch cr into c;
372: if cr%notfound then
373: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 414: hr_data_pump.api_trc_on;

410: hr_pump_get.GET_COUNTRY
411: (P_COUNTRY => c.p49);
412: end if;
413: --
414: hr_data_pump.api_trc_on;
415: HR_PERSON_ADDRESS_API.CREATE_GB_PERSON_ADDRESS
416: (p_validate => l_validate
417: ,P_EFFECTIVE_DATE => c.p1
418: ,P_PRADD_OVLAPVAL_OVERRIDE => L_PRADD_OVLAPVAL_OVERRIDE

Line 466: hr_data_pump.api_trc_off;

462: ,P_ADD_INFORMATION20 => c.p44
463: ,P_PARTY_ID => c.p45
464: ,P_ADDRESS_ID => L_ADDRESS_ID
465: ,P_OBJECT_VERSION_NUMBER => c.p47);
466: hr_data_pump.api_trc_off;
467: --
468: iuk(p_batch_line_id,c.p46,L_ADDRESS_ID);
469: --
470: update hr_pump_batch_lines l set

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

473: where l.rowid = c.myrowid;
474: --
475: close cr;
476: --
477: hr_data_pump.exit('call');
478: exception
479: when hr_multi_message.error_message_exist then
480: if cr%isopen then
481: close cr;