DBA Data[Home] [Help]

APPS.HR_PROCESS_ASSIGNMENT_SS dependencies on HR_PAY_RATE_GSP_SS

Line 4480: hr_pay_rate_gsp_ss.check_grade_ladder_exists(

4476:
4477: -- GSP Support code
4478: -- check whether grade/step/ got changed based on Grade Ladder setup,
4479: -- then only I need to store Pay Rate Txn data
4480: hr_pay_rate_gsp_ss.check_grade_ladder_exists(
4481: p_business_group_id => l_assignment_rec.organization_id,
4482: p_effective_date => l_effective_date,
4483: p_grd_ldr_exists_flag => lb_grd_ldr_exists_flag);
4484:

Line 4586: hr_pay_rate_gsp_ss.get_employee_current_salary(

4582: null,
4583: null
4584: ));
4585: -- store the current salary in the ltt_salary_data
4586: hr_pay_rate_gsp_ss.get_employee_current_salary(
4587: p_assignment_id => l_assignment_id,
4588: P_effective_date => l_effective_date,
4589: p_ltt_salary_data => ltt_salary_data);
4590: -- In case of SFL for new hire, we are getting new salary

Line 5779: hr_pay_rate_gsp_ss.create_pay_txn(

5775: p_transaction_step_id => ln_gsp_step_id,
5776: p_update_mode => ln_gsp_update_mode,
5777: p_effective_date_option => p_effective_date_option);
5778:
5779: hr_pay_rate_gsp_ss.create_pay_txn(
5780: p_ltt_salary_data => ltt_salary_data,
5781: p_transaction_id => ln_gsp_txn_id,
5782: p_transaction_step_id => ln_gsp_step_id,
5783: p_item_type => l_item_type,

Line 5792: hr_pay_rate_gsp_ss.save_gsp_txn(

5788: p_old_pay_basis_id => l_db_assignment_rec.pay_basis_id,
5789: p_business_group_id => l_assignment_rec.business_group_id
5790: );
5791: else
5792: hr_pay_rate_gsp_ss.save_gsp_txn(
5793: p_item_type => l_item_type,
5794: p_item_key => l_item_key,
5795: p_act_id => ln_gsp_activity_id,
5796: p_ltt_salary_data => ltt_salary_data,

Line 7742: hr_pay_rate_gsp_ss.check_grade_ladder_exists(

7738: p_effective_end_date:=l_effective_end_date;
7739:
7740: -- GSP changes
7741: -- get salary information in to ltt_salary_data
7742: hr_pay_rate_gsp_ss.check_grade_ladder_exists(
7743: p_business_group_id => p_organization_id,
7744: p_effective_date => l_effective_date,
7745: p_grd_ldr_exists_flag => lb_grd_ldr_exists_flag);
7746: -- may be required to add grade or step or ladder change condition

Line 7749: hr_pay_rate_gsp_ss.get_employee_salary(

7745: p_grd_ldr_exists_flag => lb_grd_ldr_exists_flag);
7746: -- may be required to add grade or step or ladder change condition
7747: if(lb_grd_ldr_exists_flag) then
7748: hr_utility.set_location('if(lb_grd_ldr_exists_flag) then:'||l_proc,45);
7749: hr_pay_rate_gsp_ss.get_employee_salary(
7750: p_assignment_id => p_assignment_id,
7751: P_effective_date => l_effective_date,
7752: p_ltt_salary_data => p_ltt_salary_data);
7753: end if;