DBA Data[Home] [Help]

APPS.GHR_PAY_CALC dependencies on PAY_USER_TABLES

Line 30: l_range_or_match pay_user_tables.range_or_match%type;

26: ,p_effective_date IN date)
27: RETURN BOOLEAN IS
28: --
29: l_pos_ei_data per_position_extra_info%ROWTYPE;
30: l_range_or_match pay_user_tables.range_or_match%type;
31: l_retained_grade ghr_pay_calc.retained_grade_rec_type;
32: l_user_table_id pay_user_tables.user_table_id%type;
33: l_proc varchar2(30) := 'get_open_pay_range';
34:

Line 32: l_user_table_id pay_user_tables.user_table_id%type;

28: --
29: l_pos_ei_data per_position_extra_info%ROWTYPE;
30: l_range_or_match pay_user_tables.range_or_match%type;
31: l_retained_grade ghr_pay_calc.retained_grade_rec_type;
32: l_user_table_id pay_user_tables.user_table_id%type;
33: l_proc varchar2(30) := 'get_open_pay_range';
34:
35: cursor c_pay_type is
36: select range_or_match

Line 37: from pay_user_tables

33: l_proc varchar2(30) := 'get_open_pay_range';
34:
35: cursor c_pay_type is
36: select range_or_match
37: from pay_user_tables
38: where user_table_id = l_user_table_id;
39: --
40: --
41: BEGIN

Line 133: l_user_table_id pay_user_tables.user_table_id%TYPE;

129: -- 0 if it is the 'standard default' table otherwise 6
130: FUNCTION get_default_prd (p_position_id IN NUMBER
131: ,p_effective_date IN DATE)
132: RETURN VARCHAR2 IS
133: l_user_table_id pay_user_tables.user_table_id%TYPE;
134: l_user_table_name pay_user_tables.user_table_name%TYPE;
135: BEGIN
136: -- First use the routine already written to go and get the user_table_id for the given position
137: l_user_table_id := get_user_table_id (p_position_id

Line 134: l_user_table_name pay_user_tables.user_table_name%TYPE;

130: FUNCTION get_default_prd (p_position_id IN NUMBER
131: ,p_effective_date IN DATE)
132: RETURN VARCHAR2 IS
133: l_user_table_id pay_user_tables.user_table_id%TYPE;
134: l_user_table_name pay_user_tables.user_table_name%TYPE;
135: BEGIN
136: -- First use the routine already written to go and get the user_table_id for the given position
137: l_user_table_id := get_user_table_id (p_position_id
138: ,NVL(p_effective_date,TRUNC(sysdate)) );

Line 578: FROM pay_user_tables uta

574: RETURN VARCHAR2 IS
575: --
576: CURSOR cur_uta IS
577: SELECT uta.user_table_name
578: FROM pay_user_tables uta
579: WHERE uta.user_table_id = p_user_table_id;
580: --
581: BEGIN
582: FOR cur_uta_rec IN cur_uta LOOP

Line 826: ,pay_user_tables utb

822: SELECT cin.value basic_pay
823: FROM pay_user_column_instances_f cin
824: ,pay_user_rows_f urw
825: ,pay_user_columns col
826: ,pay_user_tables utb
827: WHERE utb.user_table_name = ghr_pay_calc.l_standard_table_name
828: AND col.user_table_id = utb.user_table_id
829: AND col.user_column_name = p_step_or_rate
830: AND urw.user_table_id = utb.user_table_id

Line 933: FROM pay_user_tables utb

929: l_ret_basic_pay NUMBER;
930:
931: CURSOR get_std_user_table_id IS
932: SELECT utb.user_table_id
933: FROM pay_user_tables utb
934: WHERE utb.user_table_name = ghr_pay_calc.l_standard_table_name;
935:
936: BEGIN
937: -- First get the id of standard pay table for later use

Line 1017: l_user_table_id pay_user_tables.user_table_id%type;

1013: l_session ghr_history_api.g_session_var_type;
1014: l_pay_calc_out_data ghr_pay_calc.pay_calc_out_rec_type;
1015:
1016:
1017: l_user_table_id pay_user_tables.user_table_id%type;
1018: l_GM_unadjusted_rate NUMBER; --AVR
1019:
1020: -- Bug 4740036 Start
1021: l_std_user_table_id NUMBER;

Line 1028: FROM pay_user_tables utb

1024: l_std_locality_adj NUMBER;
1025: l_loc_rate NUMBER;
1026: CURSOR c_user_table_id(p_user_table_name VARCHAR2) IS
1027: SELECT utb.user_table_id
1028: FROM pay_user_tables utb
1029: WHERE utb.user_table_name = p_user_table_name;
1030: -- Bug 4740036 End
1031:
1032: cursor c_pay_tab is

Line 1033: select 1 from pay_user_tables

1029: WHERE utb.user_table_name = p_user_table_name;
1030: -- Bug 4740036 End
1031:
1032: cursor c_pay_tab is
1033: select 1 from pay_user_tables
1034: where substr(user_table_name,1,4) in ('999B','999C','999D','999E','999F')
1035: and user_table_id = l_user_table_id;
1036:
1037: l_itpay_table BOOLEAN := FALSE;

Line 1040: select 1 from pay_user_tables

1036:
1037: l_itpay_table BOOLEAN := FALSE;
1038:
1039: cursor c_pay_tab_essl is
1040: select 1 from pay_user_tables
1041: where substr(user_table_name,1,4) = 'ESSL'
1042: and user_table_id = l_user_table_id;
1043:
1044: l_essl_table BOOLEAN := FALSE;

Line 1740: l_user_table_id pay_user_tables.user_table_id%TYPE;

1736: --
1737: l_message_set BOOLEAN := FALSE;
1738: l_calculated BOOLEAN := TRUE;
1739: --
1740: l_user_table_id pay_user_tables.user_table_id%TYPE;
1741: --
1742:
1743: l_proc VARCHAR2(30) := 'main_pay_calc';
1744:

Line 3082: l_user_table_name pay_user_tables.user_table_name%type;

3078: ,p_new_locality_adj OUT NOCOPY NUMBER) IS
3079:
3080: l_std_user_table_id NUMBER;
3081: l_user_table_id NUMBER;
3082: l_user_table_name pay_user_tables.user_table_name%type;
3083: l_adjustment_percentage ghr_locality_pay_areas_f.adjustment_percentage%TYPE;
3084: l_new_std_relative_rate NUMBER;
3085:
3086:

Line 3110: FROM pay_user_tables utb

3106: l_proc VARCHAR2(30) := '894_PRDM_GM';
3107:
3108: CURSOR get_std_user_table_id IS
3109: SELECT utb.user_table_id
3110: FROM pay_user_tables utb
3111: WHERE utb.user_table_name = ghr_pay_calc.l_standard_table_name;
3112:
3113: BEGIN
3114: hr_utility.set_location('Entering ...'|| l_proc,5);

Line 3404: FROM pay_user_tables utb

3400: l_proc VARCHAR2(30) := 'GMIT_894';
3401:
3402: CURSOR get_std_user_table_id IS
3403: SELECT utb.user_table_id
3404: FROM pay_user_tables utb
3405: WHERE utb.user_table_name = ghr_pay_calc.l_standard_table_name;
3406:
3407: ----
3408: l_assignment_id per_assignments_f.assignment_id%type;

Line 3581: FROM pay_user_tables utb

3577: l_proc VARCHAR2(30) := 'GMIT_892';
3578:
3579: CURSOR get_std_user_table_id IS
3580: SELECT utb.user_table_id
3581: FROM pay_user_tables utb
3582: WHERE utb.user_table_name = ghr_pay_calc.l_standard_table_name;
3583:
3584: ----
3585: l_assignment_id per_assignments_f.assignment_id%type;

Line 3734: l_user_table_id pay_user_tables.user_table_id%type;

3730: WHERE ppl.pay_plan = p_pay_plan
3731: AND ppl.equivalent_pay_plan = 'FW';
3732:
3733: l_pay_plan VARCHAR2(30);
3734: l_user_table_id pay_user_tables.user_table_id%type;
3735: l_user_table_name pay_user_tables.user_table_name%type;
3736: -- Bug 4695312
3737: l_gs_equivalent BOOLEAN;
3738: BEGIN

Line 3735: l_user_table_name pay_user_tables.user_table_name%type;

3731: AND ppl.equivalent_pay_plan = 'FW';
3732:
3733: l_pay_plan VARCHAR2(30);
3734: l_user_table_id pay_user_tables.user_table_id%type;
3735: l_user_table_name pay_user_tables.user_table_name%type;
3736: -- Bug 4695312
3737: l_gs_equivalent BOOLEAN;
3738: BEGIN
3739: l_gs_equivalent := FALSE;

Line 3907: l_user_table_name pay_user_tables.user_table_name%type;

3903: l_rg_flag BOOLEAN;
3904: l_leo_flag BOOLEAN;
3905: l_ret_flag BOOLEAN ;
3906: l_loc_rate_less_spl_rate BOOLEAN;
3907: l_user_table_name pay_user_tables.user_table_name%type;
3908: l_default_pay_table pay_user_tables.user_table_name%type;
3909: l_new_position_pay_table pay_user_tables.user_table_name%type;
3910: l_calculation_pay_table pay_user_tables.user_table_name%type;
3911: l_position_pay_table pay_user_tables.user_table_name%type;

Line 3908: l_default_pay_table pay_user_tables.user_table_name%type;

3904: l_leo_flag BOOLEAN;
3905: l_ret_flag BOOLEAN ;
3906: l_loc_rate_less_spl_rate BOOLEAN;
3907: l_user_table_name pay_user_tables.user_table_name%type;
3908: l_default_pay_table pay_user_tables.user_table_name%type;
3909: l_new_position_pay_table pay_user_tables.user_table_name%type;
3910: l_calculation_pay_table pay_user_tables.user_table_name%type;
3911: l_position_pay_table pay_user_tables.user_table_name%type;
3912: l_retained_pay_table pay_user_tables.user_table_name%type;

Line 3909: l_new_position_pay_table pay_user_tables.user_table_name%type;

3905: l_ret_flag BOOLEAN ;
3906: l_loc_rate_less_spl_rate BOOLEAN;
3907: l_user_table_name pay_user_tables.user_table_name%type;
3908: l_default_pay_table pay_user_tables.user_table_name%type;
3909: l_new_position_pay_table pay_user_tables.user_table_name%type;
3910: l_calculation_pay_table pay_user_tables.user_table_name%type;
3911: l_position_pay_table pay_user_tables.user_table_name%type;
3912: l_retained_pay_table pay_user_tables.user_table_name%type;
3913: l_user_table_id pay_user_tables.user_table_id%type;

Line 3910: l_calculation_pay_table pay_user_tables.user_table_name%type;

3906: l_loc_rate_less_spl_rate BOOLEAN;
3907: l_user_table_name pay_user_tables.user_table_name%type;
3908: l_default_pay_table pay_user_tables.user_table_name%type;
3909: l_new_position_pay_table pay_user_tables.user_table_name%type;
3910: l_calculation_pay_table pay_user_tables.user_table_name%type;
3911: l_position_pay_table pay_user_tables.user_table_name%type;
3912: l_retained_pay_table pay_user_tables.user_table_name%type;
3913: l_user_table_id pay_user_tables.user_table_id%type;
3914: l_default_table_id pay_user_tables.user_table_id%type;

Line 3911: l_position_pay_table pay_user_tables.user_table_name%type;

3907: l_user_table_name pay_user_tables.user_table_name%type;
3908: l_default_pay_table pay_user_tables.user_table_name%type;
3909: l_new_position_pay_table pay_user_tables.user_table_name%type;
3910: l_calculation_pay_table pay_user_tables.user_table_name%type;
3911: l_position_pay_table pay_user_tables.user_table_name%type;
3912: l_retained_pay_table pay_user_tables.user_table_name%type;
3913: l_user_table_id pay_user_tables.user_table_id%type;
3914: l_default_table_id pay_user_tables.user_table_id%type;
3915: l_calculation_pay_table_id pay_user_tables.user_table_id%type;

Line 3912: l_retained_pay_table pay_user_tables.user_table_name%type;

3908: l_default_pay_table pay_user_tables.user_table_name%type;
3909: l_new_position_pay_table pay_user_tables.user_table_name%type;
3910: l_calculation_pay_table pay_user_tables.user_table_name%type;
3911: l_position_pay_table pay_user_tables.user_table_name%type;
3912: l_retained_pay_table pay_user_tables.user_table_name%type;
3913: l_user_table_id pay_user_tables.user_table_id%type;
3914: l_default_table_id pay_user_tables.user_table_id%type;
3915: l_calculation_pay_table_id pay_user_tables.user_table_id%type;
3916: l_position_pay_table_id pay_user_tables.user_table_id%type;

Line 3913: l_user_table_id pay_user_tables.user_table_id%type;

3909: l_new_position_pay_table pay_user_tables.user_table_name%type;
3910: l_calculation_pay_table pay_user_tables.user_table_name%type;
3911: l_position_pay_table pay_user_tables.user_table_name%type;
3912: l_retained_pay_table pay_user_tables.user_table_name%type;
3913: l_user_table_id pay_user_tables.user_table_id%type;
3914: l_default_table_id pay_user_tables.user_table_id%type;
3915: l_calculation_pay_table_id pay_user_tables.user_table_id%type;
3916: l_position_pay_table_id pay_user_tables.user_table_id%type;
3917:

Line 3914: l_default_table_id pay_user_tables.user_table_id%type;

3910: l_calculation_pay_table pay_user_tables.user_table_name%type;
3911: l_position_pay_table pay_user_tables.user_table_name%type;
3912: l_retained_pay_table pay_user_tables.user_table_name%type;
3913: l_user_table_id pay_user_tables.user_table_id%type;
3914: l_default_table_id pay_user_tables.user_table_id%type;
3915: l_calculation_pay_table_id pay_user_tables.user_table_id%type;
3916: l_position_pay_table_id pay_user_tables.user_table_id%type;
3917:
3918: l_adjustment_percentage ghr_locality_pay_areas_f.adjustment_percentage%type;

Line 3915: l_calculation_pay_table_id pay_user_tables.user_table_id%type;

3911: l_position_pay_table pay_user_tables.user_table_name%type;
3912: l_retained_pay_table pay_user_tables.user_table_name%type;
3913: l_user_table_id pay_user_tables.user_table_id%type;
3914: l_default_table_id pay_user_tables.user_table_id%type;
3915: l_calculation_pay_table_id pay_user_tables.user_table_id%type;
3916: l_position_pay_table_id pay_user_tables.user_table_id%type;
3917:
3918: l_adjustment_percentage ghr_locality_pay_areas_f.adjustment_percentage%type;
3919:

Line 3916: l_position_pay_table_id pay_user_tables.user_table_id%type;

3912: l_retained_pay_table pay_user_tables.user_table_name%type;
3913: l_user_table_id pay_user_tables.user_table_id%type;
3914: l_default_table_id pay_user_tables.user_table_id%type;
3915: l_calculation_pay_table_id pay_user_tables.user_table_id%type;
3916: l_position_pay_table_id pay_user_tables.user_table_id%type;
3917:
3918: l_adjustment_percentage ghr_locality_pay_areas_f.adjustment_percentage%type;
3919:
3920: l_old_special_rate NUMBER;

Line 3929: FROM pay_user_tables utb

3925: --End Bug 7046241
3926:
3927: CURSOR c_get_table_id(p_user_table_name VARCHAR2) IS
3928: SELECT utb.user_table_id user_table_id, utb.user_table_name user_table_name
3929: FROM pay_user_tables utb
3930: WHERE utb.user_table_name = p_user_table_name;
3931:
3932: ------ Bug#5741977 start
3933: l_business_group_id per_positions.organization_id%TYPE;

Line 5015: FROM pay_user_tables utb

5011: WHERE pay_plan = pc_pay_plan;
5012:
5013: CURSOR get_user_table_id(p_user_table_name VARCHAR2) IS
5014: SELECT utb.user_table_id
5015: FROM pay_user_tables utb
5016: WHERE utb.user_table_name = p_user_table_name;
5017:
5018: BEGIN
5019: hr_utility.set_location('Entering ...'|| l_proc,100);