DBA Data[Home] [Help]

APPS.GHR_SF52_API dependencies on GHR_PA_REQUESTS_PKG2

Line 816: p_from_other_pay_amount => nvl(ghr_pa_requests_pkg2.get_cop

812: p_from_grade_or_level => p_from_grade_or_level,
813: p_from_locality_adj => p_from_locality_adj,
814: p_from_occ_code => p_from_occ_code,
815: -- Bug 2353506
816: p_from_other_pay_amount => nvl(ghr_pa_requests_pkg2.get_cop
817: (p_employee_assignment_id, p_effective_date),
818: p_from_other_pay_amount),
819: -- End Bug 2353506
820: p_from_pay_basis => p_from_pay_basis,

Line 2886: -- ghr_pa_requests_pkg2.get_cop function

2882: -- Bug 2542417
2883: -- In some cases like Mass actions/Cancellation actions the assignment id and
2884: -- and effective_date are not available to fetch the capped other pay
2885: -- Below code fetches the effective_date and assignment id to be passed to
2886: -- ghr_pa_requests_pkg2.get_cop function
2887:
2888: for c_par in c_get_det_for_cop loop
2889: hr_utility.set_location('c_par.employee_assignment_id : '
2890: ||c_par.employee_assignment_id, 8);

Line 2893: l_from_cop := nvl(ghr_pa_requests_pkg2.get_cop

2889: hr_utility.set_location('c_par.employee_assignment_id : '
2890: ||c_par.employee_assignment_id, 8);
2891: hr_utility.set_location('c_par.effective_date : '
2892: ||c_par.effective_date, 8);
2893: l_from_cop := nvl(ghr_pa_requests_pkg2.get_cop
2894: (nvl(p_employee_assignment_id,c_par.employee_assignment_id)
2895: ,c_par.effective_date)
2896: ,p_from_other_pay_amount);
2897: end loop;