DBA Data[Home] [Help]

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

318: L_PROGRAM_APPLICATION_ID number;
319: L_PROGRAM_ID number;
320: --
321: begin
322: hr_data_pump.entry('call');
323: open cr;
324: fetch cr into c;
325: if cr%notfound then
326: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 379: hr_data_pump.api_trc_on;

375: --
376: L_PROGRAM_ID :=
377: hr_pump_get.get_program_id;
378: --
379: hr_data_pump.api_trc_on;
380: ben_prtt_prem_api.CREATE_PRTT_PREM
381: (p_validate => l_validate
382: ,P_PRTT_PREM_ID => L_PRTT_PREM_ID
383: ,P_EFFECTIVE_START_DATE => c.p2

Line 428: hr_data_pump.api_trc_off;

424: ,P_PROGRAM_APPLICATION_ID => L_PROGRAM_APPLICATION_ID
425: ,P_PROGRAM_ID => L_PROGRAM_ID
426: ,P_PROGRAM_UPDATE_DATE => c.p37
427: ,P_EFFECTIVE_DATE => c.p38);
428: hr_data_pump.api_trc_off;
429: --
430: iuk(p_batch_line_id,c.p1,L_PRTT_PREM_ID);
431: --
432: update hr_pump_batch_lines l set

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

437: where l.rowid = c.myrowid;
438: --
439: close cr;
440: --
441: hr_data_pump.exit('call');
442: exception
443: when hr_multi_message.error_message_exist then
444: if cr%isopen then
445: close cr;