DBA Data[Home] [Help]

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

615: L_VENDOR_ID number;
616: L_BENEFIT_GROUP_ID number;
617: --
618: begin
619: hr_data_pump.entry('call');
620: open cr;
621: fetch cr into c;
622: if cr%notfound then
623: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 658: hr_data_pump.api_trc_on;

654: (P_BUSINESS_GROUP_ID => P_BUSINESS_GROUP_ID
655: ,P_BENEFIT_GROUP => c.p104);
656: end if;
657: --
658: hr_data_pump.api_trc_on;
659: HR_CONTACT_API.CREATE_PERSON
660: (p_validate => l_validate
661: ,P_START_DATE => c.p1
662: ,p_business_group_id => p_business_group_id

Line 765: hr_data_pump.api_trc_off;

761: ,P_FULL_NAME => c.p97
762: ,P_COMMENT_ID => c.p98
763: ,P_NAME_COMBINATION_WARNING => L_NAME_COMBINATION_WARNING
764: ,P_ORIG_HIRE_WARNING => L_ORIG_HIRE_WARNING);
765: hr_data_pump.api_trc_off;
766: --
767: iuk(p_batch_line_id,c.p93,L_PERSON_ID);
768: --
769: if L_NAME_COMBINATION_WARNING then

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

790: where l.rowid = c.myrowid;
791: --
792: close cr;
793: --
794: hr_data_pump.exit('call');
795: exception
796: when hr_multi_message.error_message_exist then
797: if cr%isopen then
798: close cr;