DBA Data[Home] [Help]

APPS.HR_MEE_VIEWS_GEN dependencies on PER_SPINAL_POINT_STEPS_F

Line 517: from pay_grade_rules_f pgr, per_spinal_points psp, per_spinal_point_steps_f psps

513: ) return varchar2 is
514:
515: cursor c_step_details is
516: select pgr.value , psp.spinal_point
517: from pay_grade_rules_f pgr, per_spinal_points psp, per_spinal_point_steps_f psps
518: where psps.step_id = p_step_id and psps.spinal_point_id=psp.spinal_point_id
519: and pgr.grade_or_spinal_point_id=psps.spinal_point_id and pgr.rate_type='SP'
520: and p_eff_date between pgr.effective_start_date and pgr.effective_end_date
521: and p_eff_date between psps.effective_start_date and psps.effective_end_date;

Line 552: from per_spinal_point_steps_f psps, per_spinal_point_steps_f psps2, per_grade_spines_f gs

548: ) return number is
549:
550: cursor c_step_num is
551: select (nvl(gs.starting_step,1) + count(*))-1 step
552: from per_spinal_point_steps_f psps, per_spinal_point_steps_f psps2, per_grade_spines_f gs
553: where psps.step_id = p_step_id
554: and p_eff_date between psps.effective_start_date and psps.effective_end_date
555: and p_eff_date between psps2.effective_start_date and psps2.effective_end_date
556: and p_eff_date between gs.effective_start_date and gs.effective_end_date