DBA Data[Home] [Help]

APPS.GHR_PAY_CALC dependencies on PER_PEOPLE_F

Line 41: (person_id per_people_f.person_id%TYPE

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

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

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

Line 342: ,p_person_id IN per_people_f.person_id%TYPE

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