DBA Data[Home] [Help]

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

790: L_CORRESPONDENCE_LANGUAGE varchar2(2000);
791: L_BENEFIT_GROUP_ID number;
792: --
793: begin
794: hr_data_pump.entry('call');
795: open cr;
796: fetch cr into c;
797: if cr%notfound then
798: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 841: hr_data_pump.api_trc_on;

837: (P_BUSINESS_GROUP_ID => P_BUSINESS_GROUP_ID
838: ,P_BENEFIT_GROUP => c.p140);
839: end if;
840: --
841: hr_data_pump.api_trc_on;
842: hr_employee_api.create_employee
843: (p_validate => l_validate
844: ,P_HIRE_DATE => c.p1
845: ,p_business_group_id => p_business_group_id

Line 984: hr_data_pump.api_trc_off;

980: ,P_ASSIGNMENT_NUMBER => c.p132
981: ,P_NAME_COMBINATION_WARNING => L_NAME_COMBINATION_WARNING
982: ,P_ASSIGN_PAYROLL_WARNING => L_ASSIGN_PAYROLL_WARNING
983: ,P_ORIG_HIRE_WARNING => L_ORIG_HIRE_WARNING);
984: hr_data_pump.api_trc_off;
985: --
986: iuk(p_batch_line_id,c.p123,L_PERSON_ID);
987: --
988: iuk(p_batch_line_id,c.p124,L_ASSIGNMENT_ID);

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

1023: where l.rowid = c.myrowid;
1024: --
1025: close cr;
1026: --
1027: hr_data_pump.exit('call');
1028: exception
1029: when hr_multi_message.error_message_exist then
1030: if cr%isopen then
1031: close cr;