DBA Data[Home] [Help]

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

487: L_OBJECT_ID number;
488: L_QUALIFICATION_TYPE_ID number;
489: --
490: begin
491: hr_data_pump.entry('call');
492: open cr;
493: fetch cr into c;
494: if cr%notfound then
495: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 581: hr_data_pump.api_trc_on;

577: PER_COMPETENCE_DATA_PUMP.get_qualification_type_id
578: (P_DATA_PUMP_ALWAYS_CALL => null
579: ,P_QUALIFICATION_TYPE_NAME => c.p73);
580: --
581: hr_data_pump.api_trc_on;
582: HR_COMPETENCE_ELEMENT_API.CREATE_COMPETENCE_ELEMENT
583: (p_validate => l_validate
584: ,P_COMPETENCE_ELEMENT_ID => c.p1
585: ,P_OBJECT_VERSION_NUMBER => c.p2

Line 668: hr_data_pump.api_trc_off;

664: ,P_INFORMATION19 => c.p63
665: ,P_INFORMATION20 => c.p64
666: ,P_ACHIEVED_DATE => c.p65
667: ,P_APPR_LINE_SCORE => c.p66);
668: hr_data_pump.api_trc_off;
669:
670: --
671: update hr_pump_batch_lines l set
672: l.pval001 = decode(c.p1,null,cn,c.p1),

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

674: where l.rowid = c.myrowid;
675: --
676: close cr;
677: --
678: hr_data_pump.exit('call');
679: exception
680: when hr_multi_message.error_message_exist then
681: if cr%isopen then
682: close cr;