DBA Data[Home] [Help]

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

262: L_EXPIRY_DATE varchar2(2000);
263: L_ISSUING_COUNTRY varchar2(2000);
264: --
265: begin
266: hr_data_pump.entry('call');
267: open cr;
268: fetch cr into c;
269: if cr%notfound then
270: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 309: hr_data_pump.api_trc_on;

305: PER_IN_DATA_PUMP.GET_PASSPORT_COUNTRY
306: (P_ISSUING_COUNTRY => c.p31);
307: end if;
308: --
309: hr_data_pump.api_trc_on;
310: hr_in_person_extra_info_api.create_in_passport_details
311: (p_validate => l_validate
312: ,P_PERSON_ID => L_PERSON_ID
313: ,P_PEI_ATTRIBUTE_CATEGORY => c.p1

Line 343: hr_data_pump.api_trc_off;

339: ,P_ECNR_REQUIRED => c.p25
340: ,P_ISSUING_COUNTRY => L_ISSUING_COUNTRY
341: ,P_PERSON_EXTRA_INFO_ID => L_PERSON_EXTRA_INFO_ID
342: ,P_OBJECT_VERSION_NUMBER => c.p27);
343: hr_data_pump.api_trc_off;
344: --
345: iuk(p_batch_line_id,c.p26,L_PERSON_EXTRA_INFO_ID);
346: --
347: update hr_pump_batch_lines l set

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

350: where l.rowid = c.myrowid;
351: --
352: close cr;
353: --
354: hr_data_pump.exit('call');
355: exception
356: when hr_multi_message.error_message_exist then
357: if cr%isopen then
358: close cr;