DBA Data[Home] [Help]

APPS.HR_MEE_VIEWS_GEN dependencies on PER_SPINAL_POINT_STEPS_F

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

556: ) return varchar2 is
557:
558: cursor c_step_details is
559: select pgr.value , psp.spinal_point
560: from pay_grade_rules_f pgr, per_spinal_points psp, per_spinal_point_steps_f psps
561: where psps.step_id = p_step_id and psps.spinal_point_id=psp.spinal_point_id
562: and pgr.grade_or_spinal_point_id=psps.spinal_point_id and pgr.rate_type='SP'
563: and p_eff_date between pgr.effective_start_date and pgr.effective_end_date
564: and p_eff_date between psps.effective_start_date and psps.effective_end_date;

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

591: ) return number is
592:
593: cursor c_step_num is
594: select (nvl(gs.starting_step,1) + count(*))-1 step
595: from per_spinal_point_steps_f psps, per_spinal_point_steps_f psps2, per_grade_spines_f gs
596: where psps.step_id = p_step_id
597: and p_eff_date between psps.effective_start_date and psps.effective_end_date
598: and p_eff_date between psps2.effective_start_date and psps2.effective_end_date
599: and p_eff_date between gs.effective_start_date and gs.effective_end_date