DBA Data[Home] [Help]

APPS.GHR_PAY_CALC dependencies on PER_PEOPLE_F

Line 44: (person_id per_people_f.person_id%TYPE

40: PROCEDURE set_form_item_name(p_value IN VARCHAR2);
41: --
42: -- This record structure will keep all the in parameters that were passed to the main pay calc process
43: TYPE pay_calc_in_rec_type IS RECORD
44: (person_id per_people_f.person_id%TYPE
45: ,position_id hr_all_positions_f.position_id%TYPE
46: ,noa_family_code ghr_families.noa_family_code%TYPE
47: ,noa_code ghr_nature_of_actions.code%TYPE
48: ,second_noa_code ghr_nature_of_actions.code%TYPE

Line 206: PROCEDURE main_pay_calc (p_person_id IN per_people_f.person_id%TYPE

202: RETURN NUMBER;
203: --
204:
205: --Bug# 5132113 added new parameters p_open_out_locality_adj,p_open_localityadj_field
206: PROCEDURE main_pay_calc (p_person_id IN per_people_f.person_id%TYPE
207: ,p_position_id IN hr_all_positions_f.position_id%TYPE
208: ,p_noa_family_code IN ghr_families.noa_family_code%TYPE
209: ,p_noa_code IN ghr_nature_of_actions.code%TYPE
210: ,p_second_noa_code IN ghr_nature_of_actions.code%TYPE

Line 345: ,p_person_id IN per_people_f.person_id%TYPE

341: ,p_adj_basic_pay IN NUMBER
342: ,p_duty_station_id IN ghr_duty_stations_f.duty_station_id%TYPE
343: ,p_prd IN ghr_pa_requests.pay_rate_determinant%type
344: ,p_pay_basis IN VARCHAR2
345: ,p_person_id IN per_people_f.person_id%TYPE
346: ,p_award_amount OUT NOCOPY NUMBER
347: ,p_award_salary OUT NOCOPY NUMBER
348: );
349: -- Bug# 4748927 end