Search Results per_spinal_point_steps
Overview
PER_SPINAL_POINT_STEPS is a date-effective (DATETRACK) view owned by the APPS schema in Oracle E-Business Suite, delivered under the PER (Human Resources) product family. It exposes configuration data for spinal point steps, which define the incremental steps that make up a spinal point within a grade spine. In Oracle HRMS compensation and grade structures, a spinal point represents a discrete pay position on a recognised pay spine, and each spinal point is subdivided into ordered steps that carry effective-dated definitions. PER_SPINAL_POINT_STEPS presents the currently effective row for each step, filtering out historical and future-dated versions, so that reports and integrations always read the record in force for the session's effective date.
The view is defined over the PER_SPINAL_POINT_STEPS_F datetrack base table and is classified in ETRM documentation as a date-effective view. Its status is VALID, and it is available in both Oracle EBS 12.1.1 and 12.2.2, where the underlying span columns and validation logic differ only in the standard DATETRACK versioning mechanics common to all date-tracked HRMS entities.
Underlying Base Objects
The documented referenced objects for this view are PER_SPINAL_POINT_STEPS_F (accessed through a synonym) and FND_SESSIONS (also a synonym). PER_SPINAL_POINT_STEPS_F is the physical date-tracked table holding both the "from" and "to" effective date columns (EFFECTIVE_START_DATE and EFFECTIVE_END_DATE). FND_SESSIONS is an application sessions table maintained by Oracle Application Object Library; it stores the effective date associated with each active runtime session, identified by SESSION_ID.
The view selects from PER_SPINAL_POINT_STEPS_F with a WHERE clause that compares the session effective date to the row's start and end dates, returning only the rows where EFFECTIVE_START_DATE is on or before the session effective date and EFFECTIVE_END_DATE is on or after it. This pattern is the standard DATETRACK view construct and is the same approach used by other Human Resources date-effective views, ensuring consistency in how effective-dated grade and spinal point data is surfaced to concurrent programs, forms, and external interfaces.
Key Columns
- STEP_ID — Primary key of the spinal point step record.
- EFFECTIVE_START_DATE / EFFECTIVE_END_DATE — Date-track boundary columns defining the validity window of each row.
- BUSINESS_GROUP_ID — Identifies the HR business group that owns the step definition.
- SPINAL_POINT_ID — Foreign reference to the parent spinal point to which the step belongs.
- GRADE_SPINE_ID — Foreign reference to the grade spine associated with the step, linking pay spine structure to grade configuration.
- SEQUENCE — Ordinal position of the step within the spinal point.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — Concurrent program audit columns identifying the process that created or last updated the row.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, CREATED_BY, CREATION_DATE — Standard WHO audit columns.
- INFORMATION1 through INFORMATION30, INFORMATION_CATEGORY — Descriptive flexfield containers and their context category, allowing customer-defined attributes to be stored against a step.
Common Use Cases and Queries
Typical usages include validating spinal point step configuration during grade spine setup, reporting step sequences alongside spinal points and grades, and extracting data for payroll or compensation interfaces that need the currently effective step definitions. Because the view is date-effective, queries automatically return the version valid for the caller's session effective date, eliminating the need for manual date filtering in most reporting scenarios.
A representative query retrieves the active steps for a business group:
- SELECT sps.step_id, sps.spinal_point_id, sps.grade_spine_id, sps.sequence, sps.effective_start_date, sps.effective_end_date FROM apps.per_spinal_point_steps sps WHERE sps.business_group_id = :p_business_group_id AND sps.spinal_point_id = :p_spinal_point_id ORDER BY sps.sequence;
To include descriptive flexfield values, add the INFORMATION columns to the select list. Joins to PER_SPINAL_POINTS and PER_GRADE_SPINES on their respective IDs provide the full structural context of each step. For historical analysis, the underlying PER_SPINAL_POINT_STEPS_F base table should be queried instead, since the view masks past and future-dated rows.
-
View: PER_SPINAL_POINT_STEPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_SPINAL_POINT_STEPS, object_name:PER_SPINAL_POINT_STEPS, status:VALID, product: PER - Human Resources , description: Date-effective view. , implementation_dba_data: APPS.PER_SPINAL_POINT_STEPS ,
-
View: PER_SPINAL_POINT_STEPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_SPINAL_POINT_STEPS, object_name:PER_SPINAL_POINT_STEPS, status:VALID, product: PER - Human Resources , description: Date-effective view. , implementation_dba_data: APPS.PER_SPINAL_POINT_STEPS ,
-
SYNONYM: PUBLIC.PER_SPINAL_POINT_STEPS
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:PER_SPINAL_POINT_STEPS, status:VALID,
-
APPS.PER_SPINAL_POINT_STEPS_PKG SQL Statements
12.2.2
-
APPS.PER_SPINAL_POINT_STEPS_PKG SQL Statements
12.1.1
-
VIEW: APPS.PER_GRADE_SPINES_V
12.2.2
-
VIEW: APPS.PER_GRADE_SPINES_V
12.1.1
-
VIEW: APPS.PQH_CORPS_DEFINITIONS_V
12.2.2
-
PACKAGE BODY: APPS.PER_SPINAL_POINTS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PER_SPINAL_POINTS_PKG, status:VALID,
-
VIEW: APPS.PQH_CORPS_DEFINITIONS_V
12.1.1
-
PACKAGE BODY: APPS.PER_SPINAL_POINT_STEPS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PER_SPINAL_POINT_STEPS_PKG, status:VALID,
-
PACKAGE BODY: APPS.BEN_ESP_BUS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_ESP_BUS, status:VALID,
-
VIEW: APPS.PER_SPINAL_POINT_STEPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_SPINAL_POINT_STEPS, object_name:PER_SPINAL_POINT_STEPS, status:VALID,
-
PACKAGE BODY: APPS.PER_SPINAL_POINTS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PER_SPINAL_POINTS_PKG, status:VALID,
-
PACKAGE BODY: APPS.PER_SPINAL_POINT_STEPS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PER_SPINAL_POINT_STEPS_PKG, status:VALID,
-
PACKAGE BODY: APPS.HRSPINE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HRSPINE, status:VALID,
-
PACKAGE BODY: APPS.HRSPINE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HRSPINE, status:VALID,
-
PACKAGE BODY: APPS.BEN_ESP_BUS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_ESP_BUS, status:VALID,
-
View: PER_GRADE_SPINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_GRADE_SPINES_V, object_name:PER_GRADE_SPINES_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_GRADE_SPINES_V ,
-
View: PER_GRADE_SPINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_GRADE_SPINES_V, object_name:PER_GRADE_SPINES_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_GRADE_SPINES_V ,
-
APPS.PER_SPINAL_POINTS_PKG SQL Statements
12.1.1
-
VIEW: APPS.HRBV_SPINAL_POINT_STEPS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:HRBV_SPINAL_POINT_STEPS_V, status:VALID,
-
VIEW: APPS.HRBV_SPINAL_POINT_STEPS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:HRBV_SPINAL_POINT_STEPS_V, status:VALID,
-
View: PQH_CORPS_DEFINITIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_CORPS_DEFINITIONS_V, object_name:PQH_CORPS_DEFINITIONS_V, status:VALID, product: PQH - Public Sector HR , implementation_dba_data: APPS.PQH_CORPS_DEFINITIONS_V ,
-
APPS.PER_SPINAL_POINTS_PKG SQL Statements
12.2.2
-
View: PQH_CORPS_DEFINITIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_CORPS_DEFINITIONS_V, object_name:PQH_CORPS_DEFINITIONS_V, status:VALID, product: PQH - Public Sector HR , implementation_dba_data: APPS.PQH_CORPS_DEFINITIONS_V ,
-
PACKAGE BODY: APPS.PSB_HR_EXTRACT_DATA_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PSB_HR_EXTRACT_DATA_PVT, status:VALID,
-
VIEW: APPS.PER_GRADE_SPINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_GRADE_SPINES_V, object_name:PER_GRADE_SPINES_V, status:VALID,
-
PACKAGE BODY: APPS.PER_SPINAL_POINT_STEPS_PKG
12.2.2
-
PACKAGE BODY: APPS.PER_SPINAL_POINT_STEPS_PKG
12.1.1
-
VIEW: APPS.PER_GRADE_SPINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_GRADE_SPINES_V, object_name:PER_GRADE_SPINES_V, status:VALID,
-
PACKAGE BODY: APPS.PSB_HR_POPULATE_DATA_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PSB_HR_POPULATE_DATA_PVT, status:VALID,
-
APPS.BEN_ESP_BUS SQL Statements
12.2.2
-
APPS.BEN_ESP_BUS SQL Statements
12.1.1
-
SYNONYM: APPS.PER_SPINAL_POINT_STEPS_F
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PER_SPINAL_POINT_STEPS_F, status:VALID,
-
VIEW: APPS.PER_SPINAL_POINT_STEPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_SPINAL_POINT_STEPS, object_name:PER_SPINAL_POINT_STEPS, status:VALID,
-
SYNONYM: APPS.PER_SPINAL_POINT_STEPS_F
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PER_SPINAL_POINT_STEPS_F, status:VALID,
-
VIEW: APPS.PQH_CORPS_DEFINITIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_CORPS_DEFINITIONS_V, object_name:PQH_CORPS_DEFINITIONS_V, status:VALID,
-
VIEW: APPS.PQH_CORPS_DEFINITIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_CORPS_DEFINITIONS_V, object_name:PQH_CORPS_DEFINITIONS_V, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.PER_SPINAL_POINTS_PKG
12.2.2
-
PACKAGE BODY: APPS.PER_SPINAL_POINTS_PKG
12.1.1
-
VIEW: APPS.HRBV_SPINAL_POINT_PLACEMENTS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:HRBV_SPINAL_POINT_PLACEMENTS_V, status:VALID,
-
VIEW: APPS.HRBV_SPINAL_POINT_PLACEMENTS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:HRBV_SPINAL_POINT_PLACEMENTS_V, status:VALID,
-
TABLE: HR.PER_SPINAL_POINT_PLACEMENTS_F
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_SPINAL_POINT_PLACEMENTS_F, object_name:PER_SPINAL_POINT_PLACEMENTS_F, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
TABLE: HR.PER_SPINAL_POINT_PLACEMENTS_F
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_SPINAL_POINT_PLACEMENTS_F, object_name:PER_SPINAL_POINT_PLACEMENTS_F, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1