DBA Data[Home] [Help]

APPS.PER_PERIODS_OF_SERVICE_PKG dependencies on HREMPTER

Line 1052: hrempter.cancel_termination(p_person_id

1048: -- Commented out the code as it duplicate call.
1049: --
1050: /*
1051: if p_initiate_cancellation = 'Y' then
1052: hrempter.cancel_termination(p_person_id
1053: ,p_actual_termination_date
1054: ,p_clear_details);
1055: els
1056: */

Line 1082: hrempter.terminate_employee('PRE_UPDATE'

1078: end if;
1079: end if;
1080: -- do the ref int stuff
1081: if p_s_actual_termination_date IS null then
1082: hrempter.terminate_employee('PRE_UPDATE'
1083: ,p_business_group_id
1084: ,p_person_id
1085: ,p_c_assignment_status_type_id
1086: ,p_actual_termination_date

Line 1090: hrempter.employee_shutdown('PRE_UPDATE'

1086: ,p_actual_termination_date
1087: ,p_last_standard_process_date
1088: ,p_final_process_date);
1089: elsif p_final_process_date is not null then
1090: hrempter.employee_shutdown('PRE_UPDATE'
1091: ,p_person_id
1092: ,p_final_process_date);
1093: end if;
1094: end if;

Line 1104: -- to procedure hrempter.cancle_termination.

1100: end if;
1101: --
1102: --
1103: -- Fix for bug 3889294 starts here. Moved the following code
1104: -- to procedure hrempter.cancle_termination.
1105: --
1106: /*
1107: --
1108: -- Added to support reverse termination processing for legislations

Line 1244: hr_utility.set_location('Entering: hrempter.cancel_termination'|| l_proc, 5);

1240:
1241: -- fix bug 1234721
1242: -- parameter should remain null
1243: -- p_s_final_process_date := p_final_process_date;
1244: hr_utility.set_location('Entering: hrempter.cancel_termination'|| l_proc, 5);
1245: if p_initiate_cancellation ='Y' then
1246: hrempter.cancel_termination(p_person_id
1247: ,p_actual_termination_date
1248: ,p_clear_details);

Line 1246: hrempter.cancel_termination(p_person_id

1242: -- parameter should remain null
1243: -- p_s_final_process_date := p_final_process_date;
1244: hr_utility.set_location('Entering: hrempter.cancel_termination'|| l_proc, 5);
1245: if p_initiate_cancellation ='Y' then
1246: hrempter.cancel_termination(p_person_id
1247: ,p_actual_termination_date
1248: ,p_clear_details);
1249: p_requery_required := 'Y';
1250: hr_utility.set_location('After: hrempter.cancel_termination'|| l_proc, 10);

Line 1250: hr_utility.set_location('After: hrempter.cancel_termination'|| l_proc, 10);

1246: hrempter.cancel_termination(p_person_id
1247: ,p_actual_termination_date
1248: ,p_clear_details);
1249: p_requery_required := 'Y';
1250: hr_utility.set_location('After: hrempter.cancel_termination'|| l_proc, 10);
1251: /* This code is added to raise BE on reverse termination of employee */
1252:
1253: hr_ex_employee_be4.reverse_terminate_employee_a(p_person_id
1254: ,p_actual_termination_date

Line 1265: /* This delete is now doen in hrempter.terminate_employee so that the

1261: -- parameter should remain null
1262: -- p_s_actual_termination_date := p_actual_termination_date;
1263: --
1264: --
1265: /* This delete is now doen in hrempter.terminate_employee so that the
1266: deletion of pay proposals can be kept in step with the deletion
1267: of elements.
1268:
1269: per_periods_of_service_pkg.delete_per_pay_proposals(

Line 1273: hrempter.terminate_employee('POST_UPDATE'

1269: per_periods_of_service_pkg.delete_per_pay_proposals(
1270: p_period_of_service_id => p_period_of_service_id
1271: ,p_actual_termination_date => p_actual_termination_date);
1272: */
1273: hrempter.terminate_employee('POST_UPDATE'
1274: ,p_business_group_id
1275: ,p_person_id
1276: ,p_c_assignment_status_type_id
1277: ,p_actual_termination_date

Line 1283: hrempter.employee_shutdown ('POST_UPDATE'

1279: ,p_final_process_date);
1280: p_requery_required := 'Y';
1281: --
1282: elsif p_final_process_date is not null then
1283: hrempter.employee_shutdown ('POST_UPDATE'
1284: ,p_person_id
1285: ,p_final_process_date);
1286: p_requery_required := 'Y';
1287: end if;

Line 1390: -- Moved the PTU changes code to procedure hrempter.cancel_termination

1386: -- p_old_leaving_reason => l_old_leaving_reason);
1387: hr_utility.set_location('Leaving '||l_proc,60);
1388: --
1389: -- Fix for bug 3889294 starts here.
1390: -- Moved the PTU changes code to procedure hrempter.cancel_termination
1391: -- for reverse termination case.
1392: --
1393: /*
1394: -- start of PTU Changes