DBA Data[Home] [Help]

APPS.GHR_SF52_API dependencies on GHR_PA_REQUESTS_PKG2

Line 792: p_from_other_pay_amount => nvl(ghr_pa_requests_pkg2.get_cop

788: p_from_grade_or_level => p_from_grade_or_level,
789: p_from_locality_adj => p_from_locality_adj,
790: p_from_occ_code => p_from_occ_code,
791: -- Bug 2353506
792: p_from_other_pay_amount => nvl(ghr_pa_requests_pkg2.get_cop
793: (p_employee_assignment_id, p_effective_date),
794: p_from_other_pay_amount),
795: -- End Bug 2353506
796: p_from_pay_basis => p_from_pay_basis,

Line 2742: -- ghr_pa_requests_pkg2.get_cop function

2738: -- Bug 2542417
2739: -- In some cases like Mass actions/Cancellation actions the assignment id and
2740: -- and effective_date are not available to fetch the capped other pay
2741: -- Below code fetches the effective_date and assignment id to be passed to
2742: -- ghr_pa_requests_pkg2.get_cop function
2743:
2744: for c_par in c_get_det_for_cop loop
2745: hr_utility.set_location('c_par.employee_assignment_id : '
2746: ||c_par.employee_assignment_id, 8);

Line 2749: l_from_cop := nvl(ghr_pa_requests_pkg2.get_cop

2745: hr_utility.set_location('c_par.employee_assignment_id : '
2746: ||c_par.employee_assignment_id, 8);
2747: hr_utility.set_location('c_par.effective_date : '
2748: ||c_par.effective_date, 8);
2749: l_from_cop := nvl(ghr_pa_requests_pkg2.get_cop
2750: (nvl(p_employee_assignment_id,c_par.employee_assignment_id)
2751: ,c_par.effective_date)
2752: ,p_from_other_pay_amount);
2753: end loop;