DBA Data[Home] [Help]

APPS.PER_PERIODS_OF_SERVICE_PKG dependencies on HREMPTER

Line 1051: hrempter.cancel_termination(p_person_id

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

Line 1081: hrempter.terminate_employee('PRE_UPDATE'

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

Line 1089: hrempter.employee_shutdown('PRE_UPDATE'

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

Line 1103: -- to procedure hrempter.cancle_termination.

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

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

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

Line 1245: hrempter.cancel_termination(p_person_id

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

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

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

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

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

Line 1272: hrempter.terminate_employee('POST_UPDATE'

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

Line 1282: hrempter.employee_shutdown ('POST_UPDATE'

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

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

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