DBA Data[Home] [Help]

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

640: L_VENDOR_ID number;
641: L_BENEFIT_GROUP_ID number;
642: --
643: begin
644: hr_data_pump.entry('call');
645: open cr;
646: fetch cr into c;
647: if cr%notfound then
648: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 691: hr_data_pump.api_trc_on;

687: (P_BUSINESS_GROUP_ID => P_BUSINESS_GROUP_ID
688: ,P_BENEFIT_GROUP => c.p109);
689: end if;
690: --
691: hr_data_pump.api_trc_on;
692: hr_in_contingent_worker_api.create_in_cwk
693: (p_validate => l_validate
694: ,P_START_DATE => c.p1
695: ,p_business_group_id => p_business_group_id

Line 803: hr_data_pump.api_trc_off;

799: ,P_ASG_OBJECT_VERSION_NUMBER => c.p101
800: ,P_ASSIGNMENT_SEQUENCE => c.p102
801: ,P_ASSIGNMENT_NUMBER => c.p103
802: ,P_NAME_COMBINATION_WARNING => L_NAME_COMBINATION_WARNING);
803: hr_data_pump.api_trc_off;
804: --
805: iuk(p_batch_line_id,c.p93,L_PERSON_ID);
806: --
807: iuk(p_batch_line_id,c.p100,L_ASSIGNMENT_ID);

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

829: where l.rowid = c.myrowid;
830: --
831: close cr;
832: --
833: hr_data_pump.exit('call');
834: exception
835: when hr_multi_message.error_message_exist then
836: if cr%isopen then
837: close cr;