DBA Data[Home] [Help]

APPS.GHR_RIF_PKG dependencies on HR_POSITIONS_F

Line 257: cursor position_name(p_position_id hr_positions_f.position_id%TYPE,p_effective_date date )

253: select jobs.name
254: from per_jobs jobs
255: where jobs.job_id = p_job_id;
256:
257: cursor position_name(p_position_id hr_positions_f.position_id%TYPE,p_effective_date date )
258: is
259: select name
260: from hr_positions_f pos
261: where pos.position_id = p_position_id

Line 260: from hr_positions_f pos

256:
257: cursor position_name(p_position_id hr_positions_f.position_id%TYPE,p_effective_date date )
258: is
259: select name
260: from hr_positions_f pos
261: where pos.position_id = p_position_id
262: and p_effective_date between pos.effective_start_date
263: and pos.effective_end_date;
264:

Line 876: from hr_positions_f pos

872:
873:
874: cursor unassigned_pos(p_effective_date date ) is
875: select position_id,organization_id,business_group_id
876: from hr_positions_f pos
877: where not exists
878: ( select 1
879: from per_assignments_f asg
880: where asg.position_id = pos.position_id