DBA Data[Home] [Help]

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

526: L_DESIGNATED_RECEIVER_ID number;
527: L_SHIP_TO_LOCATION_ID number;
528: --
529: begin
530: hr_data_pump.entry('call');
531: open cr;
532: fetch cr into c;
533: if cr%notfound then
534: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 563: hr_data_pump.api_trc_on;

559: ,P_BUSINESS_GROUP_ID => P_BUSINESS_GROUP_ID
560: ,P_LANGUAGE_CODE => c.p2);
561: end if;
562: --
563: hr_data_pump.api_trc_on;
564: HR_LOCATION_API.CREATE_LOCATION
565: (p_validate => l_validate
566: ,P_EFFECTIVE_DATE => c.p1
567: ,P_LANGUAGE_CODE => c.p2

Line 650: hr_data_pump.api_trc_off;

646: ,P_GLOBAL_ATTRIBUTE20 => c.p79
647: ,p_business_group_id => p_business_group_id
648: ,P_LOCATION_ID => L_LOCATION_ID
649: ,P_OBJECT_VERSION_NUMBER => c.p81);
650: hr_data_pump.api_trc_off;
651: --
652: iuk(p_batch_line_id,c.p80,L_LOCATION_ID);
653: --
654: update hr_pump_batch_lines l set

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

657: where l.rowid = c.myrowid;
658: --
659: close cr;
660: --
661: hr_data_pump.exit('call');
662: exception
663: when hr_multi_message.error_message_exist then
664: if cr%isopen then
665: close cr;