DBA Data[Home] [Help]

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

535: L_VEHICLE_REPOSITORY_ID number;
536: L_OBJECT_VERSION_NUMBER number;
537: --
538: begin
539: hr_data_pump.entry('call');
540: open cr;
541: fetch cr into c;
542: if cr%notfound then
543: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 566: hr_data_pump.api_trc_on;

562: PQP_VEHICLE_REPOSITORY_MAPPING.GET_VEHICLE_REPOSITORY_OVN
563: (P_VEHICLE_REPOSITORY_USER_KEY => c.p82);
564: end if;
565: --
566: hr_data_pump.api_trc_on;
567: PQP_VEHICLE_REPOSITORY_API.UPDATE_VEHICLE
568: (p_validate => l_validate
569: ,P_EFFECTIVE_DATE => c.p1
570: ,P_DATETRACK_MODE => c.p2

Line 653: hr_data_pump.api_trc_off;

649: ,P_VRE_INFORMATION19 => c.p78
650: ,P_VRE_INFORMATION20 => c.p79
651: ,P_EFFECTIVE_START_DATE => c.p80
652: ,P_EFFECTIVE_END_DATE => c.p81);
653: hr_data_pump.api_trc_off;
654:
655: --
656: update hr_pump_batch_lines l set
657: l.pval080 = decode(c.p80,null,cn,dc(c.p80)),

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

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