DBA Data[Home] [Help]

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

362: L_PROGRAM_APPLICATION_ID number;
363: L_PROGRAM_ID number;
364: --
365: begin
366: hr_data_pump.entry('call');
367: open cr;
368: fetch cr into c;
369: if cr%notfound then
370: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 434: hr_data_pump.api_trc_on;

430: --
431: L_PROGRAM_ID :=
432: hr_pump_get.get_program_id;
433: --
434: hr_data_pump.api_trc_on;
435: ben_elig_dpnt_api.CREATE_ELIG_DPNT
436: (p_validate => l_validate
437: ,P_ELIG_DPNT_ID => L_ELIG_DPNT_ID
438: ,P_CREATE_DT => c.p2

Line 489: hr_data_pump.api_trc_off;

485: ,P_PROGRAM_ID => L_PROGRAM_ID
486: ,P_PROGRAM_UPDATE_DATE => c.p40
487: ,P_OBJECT_VERSION_NUMBER => c.p41
488: ,P_EFFECTIVE_DATE => c.p42);
489: hr_data_pump.api_trc_off;
490: --
491: iuk(p_batch_line_id,c.p1,L_ELIG_DPNT_ID);
492: --
493: update hr_pump_batch_lines l set

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

496: where l.rowid = c.myrowid;
497: --
498: close cr;
499: --
500: hr_data_pump.exit('call');
501: exception
502: when hr_multi_message.error_message_exist then
503: if cr%isopen then
504: close cr;