DBA Data[Home] [Help]

APPS.GHR_PAY_CALC dependencies on GHR_HISTORY_FETCH

Line 53: ghr_history_fetch.fetch_positionei(

49: l_retained_grade := ghr_pc_basic_pay.get_retained_grade_details (p_person_id
50: ,p_effective_date
51: ,p_pa_request_id);
52: IF p_prd IN ('A','B','E','F') AND l_retained_grade.temp_step is not null THEN
53: ghr_history_fetch.fetch_positionei(
54: p_position_id => p_position_id
55: ,p_information_type => 'GHR_US_POS_VALID_GRADE'
56: ,p_date_effective => p_effective_date
57: ,p_pos_ei_data => l_pos_ei_data);

Line 73: ghr_history_fetch.fetch_positionei(

69: end;
70:
71: ELSE
72: hr_utility.set_location('Non Retained Grade ...' || l_proc,30);
73: ghr_history_fetch.fetch_positionei(
74: p_position_id => p_position_id
75: ,p_information_type => 'GHR_US_POS_VALID_GRADE'
76: ,p_date_effective => p_effective_date
77: ,p_pos_ei_data => l_pos_ei_data);

Line 118: ghr_history_fetch.fetch_positionei(

114: l_pos_ei_data per_position_extra_info%ROWTYPE;
115: --
116: --
117: BEGIN
118: ghr_history_fetch.fetch_positionei(
119: p_position_id => p_position_id
120: ,p_information_type => 'GHR_US_POS_VALID_GRADE'
121: ,p_date_effective => p_effective_date
122: ,p_pos_ei_data => l_pos_ei_data);

Line 896: ghr_history_fetch.fetch_positionei(

892: END IF;
893: ELSE
894: ******/
895:
896: ghr_history_fetch.fetch_positionei(
897: p_position_id => p_position_id,
898: p_information_type => 'GHR_US_POS_GRP2',
899: p_date_effective => p_effective_date,
900: p_pos_ei_data => l_pos_ei_grp2_data);

Line 3170: ghr_history_fetch.fetch_positionei(

3166: l_pos_ei_data per_position_extra_info%ROWTYPE;
3167: --
3168: --
3169: BEGIN
3170: ghr_history_fetch.fetch_positionei(
3171: p_position_id => p_position_id
3172: ,p_information_type => 'GHR_US_POS_VALID_GRADE'
3173: ,p_date_effective => p_effective_date
3174: ,p_pos_ei_data => l_pos_ei_data);

Line 3548: ghr_history_fetch.fetch_positionei(

3544: IF l_prd IN ('A','B','E','F','U','V') THEN
3545: -- If PRD in 'A','B','E','F' and having temporary promotion step, get from position extra info
3546: IF l_prd IN ('A','B','E','F') AND
3547: ghr_pa_requests_pkg.temp_step_true(p_pa_request_id) THEN
3548: ghr_history_fetch.fetch_positionei(
3549: p_position_id => l_from_position_id,
3550: p_information_type => 'GHR_US_POS_VALID_GRADE',
3551: p_date_effective => nvl(p_effective_date,trunc(sysdate)),
3552: p_pos_ei_data => l_pos_ei_grade_data);

Line 3565: ghr_history_fetch.fetch_positionei(

3561: ,p_effective_date => nvl(p_effective_date,trunc(sysdate)));
3562: END IF;
3563: -- If PRD not in 'A','B','E','F','U','V', get from position extra info
3564: ELSE
3565: ghr_history_fetch.fetch_positionei(
3566: p_position_id => l_from_position_id,
3567: p_information_type => 'GHR_US_POS_VALID_GRADE',
3568: p_date_effective => nvl(p_effective_date,trunc(sysdate)),
3569: p_pos_ei_data => l_pos_ei_grade_data);

Line 4910: ghr_history_fetch.fetch_positionei(

4906:
4907: -- Set the PRD if Pay Retention is terminated.
4908: -- 7046241
4909: IF l_term_ret_pay_prd and l_gr_pay_plan and l_calculation_pay_table = ghr_pay_calc.l_standard_table_name then
4910: ghr_history_fetch.fetch_positionei(
4911: p_position_id => p_pay_calc_data.position_id,
4912: p_information_type => 'GHR_US_POS_VALID_GRADE',
4913: p_date_effective => p_pay_calc_data.effective_date,
4914: p_pos_ei_data => l_pos_ei_valid_grade);