DBA Data[Home] [Help]

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

394: c cr%rowtype;
395: l_validate boolean := false;
396: --
397: begin
398: hr_data_pump.entry('call');
399: open cr;
400: fetch cr into c;
401: if cr%notfound then
402: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 409: hr_data_pump.api_trc_on;

405: hr_utility.set_message_token('VALUE',p_batch_line_id);
406: hr_utility.raise_error;
407: end if;
408: --
409: hr_data_pump.api_trc_on;
410: ben_life_event_reason_api.CREATE_LIFE_EVENT_REASON
411: (p_validate => l_validate
412: ,P_LER_ID => c.p1
413: ,P_EFFECTIVE_START_DATE => c.p2

Line 470: hr_data_pump.api_trc_off;

466: ,P_LER_ATTRIBUTE29 => c.p54
467: ,P_LER_ATTRIBUTE30 => c.p55
468: ,P_OBJECT_VERSION_NUMBER => c.p56
469: ,P_EFFECTIVE_DATE => c.p57);
470: hr_data_pump.api_trc_off;
471:
472: --
473: update hr_pump_batch_lines l set
474: l.pval001 = decode(c.p1,null,cn,c.p1),

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

478: where l.rowid = c.myrowid;
479: --
480: close cr;
481: --
482: hr_data_pump.exit('call');
483: exception
484: when hr_multi_message.error_message_exist then
485: if cr%isopen then
486: close cr;