DBA Data[Home] [Help]

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

324: L_PROGRAM_APPLICATION_ID number;
325: L_PROGRAM_ID number;
326: --
327: begin
328: hr_data_pump.entry('call');
329: open cr;
330: fetch cr into c;
331: if cr%notfound then
332: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 409: hr_data_pump.api_trc_on;

405: --
406: L_PROGRAM_ID :=
407: hr_pump_get.get_program_id;
408: --
409: hr_data_pump.api_trc_on;
410: ben_prtt_prem_api.UPDATE_PRTT_PREM
411: (p_validate => l_validate
412: ,P_PRTT_PREM_ID => L_PRTT_PREM_ID
413: ,P_EFFECTIVE_START_DATE => c.p1

Line 459: hr_data_pump.api_trc_off;

455: ,P_PROGRAM_ID => L_PROGRAM_ID
456: ,P_PROGRAM_UPDATE_DATE => c.p35
457: ,P_EFFECTIVE_DATE => c.p36
458: ,P_DATETRACK_MODE => c.p37);
459: hr_data_pump.api_trc_off;
460:
461: --
462: update hr_pump_batch_lines l set
463: l.pval001 = decode(c.p1,null,cn,dc(c.p1)),

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

465: where l.rowid = c.myrowid;
466: --
467: close cr;
468: --
469: hr_data_pump.exit('call');
470: exception
471: when hr_multi_message.error_message_exist then
472: if cr%isopen then
473: close cr;