DBA Data[Home] [Help]

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

382: L_PROGRAM_APPLICATION_ID number;
383: L_PROGRAM_ID number;
384: --
385: begin
386: hr_data_pump.entry('call');
387: open cr;
388: fetch cr into c;
389: if cr%notfound then
390: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 481: hr_data_pump.api_trc_on;

477: --
478: L_PROGRAM_ID :=
479: hr_pump_get.get_program_id;
480: --
481: hr_data_pump.api_trc_on;
482: ben_person_life_event_api.CREATE_PERSON_LIFE_EVENT
483: (p_validate => l_validate
484: ,P_PER_IN_LER_ID => L_PER_IN_LER_ID
485: ,P_PER_IN_LER_STAT_CD => c.p2

Line 542: hr_data_pump.api_trc_off;

538: ,P_PROGRAM_ID => L_PROGRAM_ID
539: ,P_PROGRAM_UPDATE_DATE => c.p43
540: ,P_OBJECT_VERSION_NUMBER => c.p44
541: ,P_EFFECTIVE_DATE => c.p45);
542: hr_data_pump.api_trc_off;
543: --
544: iuk(p_batch_line_id,c.p1,L_PER_IN_LER_ID);
545: --
546: update hr_pump_batch_lines l set

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

552: where l.rowid = c.myrowid;
553: --
554: close cr;
555: --
556: hr_data_pump.exit('call');
557: exception
558: when hr_multi_message.error_message_exist then
559: if cr%isopen then
560: close cr;