DBA Data[Home] [Help]

APPS.HR_REPORTS dependencies on PER_POSITION_STRUCTURES

Line 758: from per_position_structures pst

754: begin
755: hr_utility.set_location('hr_reports.get_position_hierarchy',10);
756: select pst.name
757: into p_pos_structure_name
758: from per_position_structures pst
759: where pst.position_structure_id = p_position_structure_id;
760: exception
761: when no_data_found then null;
762: end;

Line 774: from per_position_structures pst,

770: into p_pos_structure_name,
771: p_pos_version,
772: p_version_start_date,
773: p_version_end_date
774: from per_position_structures pst,
775: per_pos_structure_versions psv
776: where psv.pos_structure_version_id = p_pos_structure_version_id
777: and pst.position_structure_id = psv.position_structure_id;
778: exception