Search Results pa_rep_seq_number
Overview
PA_REP_SEQ_NUMBER is a reference table in the Oracle Projects (PA) schema that stores a controlled range of sequence numbers spanning from -100 to 20000. Rather than acting as a transactional or analytical store, this object functions as a lookup or domain table that supplies predefined numeric values to other processes within the Oracle E-Business Suite Projects module. Its narrow scope — a single documented column — makes it one of the simplest structures in the PA schema, yet it plays a supporting role wherever consistent, bounded sequence values must be drawn without gaps or overlap.
From a Data Vault modeling perspective, the ETRM metadata classifies this object heuristically as standalone. In Data Vault terms this suggests the table is best modeled as a hub-like reference entity rather than a link or satellite, since it carries no foreign-key relationships to other documented objects and its single column serves as the primary key.
Key Information Stored
The documented physical schema for PA_REP_SEQ_NUMBER in ETRM 12.2.2 consists of exactly one column:
- SEQ_NUMBER — The sole documented column. It stores integer sequence values in the range -100 through 20000. It is both the primary key (enforced by the constraint PA_REP_SEQ_NUMBER_PK) and the subject of a unique index, PA_REP_SEQ_NUMBER_U1.
Because SEQ_NUMBER is simultaneously the primary key and the only unique-index candidate, there is no separation between a surrogate key and a business key in this table. The column itself is the business key, and the unique index PA_REP_SEQ_NUMBER_U1 provides the business-key integrity guarantee while the primary-key constraint PA_REP_SEQ_NUMBER_PK enforces entity uniqueness. Notably, the range extends below zero to -100, implying the table is designed to accommodate negative offset sequences in addition to the customary non-negative values.
Common Use Cases and Queries
The most common application of this table is as a validation source when populating or interpreting sequence-driven fields elsewhere in the Projects module. Typical queries include verifying whether a given value falls within the permitted set, and retrieving the full ordered range for display or configuration screens:
- Validating an inbound sequence value:
SELECT SEQ_NUMBER FROM PA.PA_REP_SEQ_NUMBER WHERE SEQ_NUMBER = :p_seq; - Listing all permitted sequences in ascending order:
SELECT SEQ_NUMBER FROM PA.PA_REP_SEQ_NUMBER ORDER BY SEQ_NUMBER; - Counting the available domain values or checking boundary entries (-100 and 20000).
- Joining to reporting or interface tables that must reference only valid sequence numbers, using SEQ_NUMBER as the join predicate.
These patterns make the table useful in reporting validation, data-migration scoping, and interface reconciliation efforts where sequence integrity matters.
Related Objects
The ETRM metadata classifies PA_REP_SEQ_NUMBER as standalone, with no documented foreign-key relationships to other tables. Consequently, no link or dependent child objects are recorded in the documentation. Significant related or logically associated objects within the PA schema include reporting and interface tables that consume sequence values, though none are documented here with explicit join columns.
- PA.PA_REP_SEQ_NUMBER_PK — the primary-key constraint defining uniqueness on SEQ_NUMBER.
- PA.PA_REP_SEQ_NUMBER_U1 — the unique index reinforcing the business-key candidate on SEQ_NUMBER.
Given the limited documented relationship data, consultants should rely on the primary-key and unique-index definitions as the authoritative integration points and confirm any consumer tables through direct schema inspection rather than assumption.
-
Table: PA_REP_SEQ_NUMBER
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_REP_SEQ_NUMBER, object_name:PA_REP_SEQ_NUMBER, status:VALID, product: PA - Projects , description: This table stores sequence number from -100 to 20000 numbers. , implementation_dba_data: PA.PA_REP_SEQ_NUMBER ,
-
Table: PA_REP_SEQ_NUMBER
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_REP_SEQ_NUMBER, object_name:PA_REP_SEQ_NUMBER, status:VALID, product: PA - Projects , description: This table stores sequence number from -100 to 20000 numbers. , implementation_dba_data: PA.PA_REP_SEQ_NUMBER ,
-
VIEW: PA.PA_REP_SEQ_NUMBER#
12.2.2
owner:PA, object_type:VIEW, object_name:PA_REP_SEQ_NUMBER#, status:VALID,
-
VIEW: PA.PA_REP_SEQ_NUMBER#
12.2.2
-
VIEW: APPS.PA_REP_QUARTER_CAL_V
12.2.2
-
VIEW: APPS.PA_REP_QUARTER_CAL_V
12.1.1
-
VIEW: APPS.PA_REP_YEAR_CAL_V
12.1.1
-
SYNONYM: APPS.PA_REP_SEQ_NUMBER
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_REP_SEQ_NUMBER, status:VALID,
-
SYNONYM: APPS.PA_REP_SEQ_NUMBER
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_REP_SEQ_NUMBER, status:VALID,
-
VIEW: APPS.PA_REP_YEAR_CAL_V
12.2.2
-
TABLE: PA.PA_REP_SEQ_NUMBER
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_REP_SEQ_NUMBER, object_name:PA_REP_SEQ_NUMBER, status:VALID,
-
TABLE: PA.PA_REP_SEQ_NUMBER
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_REP_SEQ_NUMBER, object_name:PA_REP_SEQ_NUMBER, status:VALID,
-
VIEW: APPS.PA_REP_RES_CAP_WKD_V
12.2.2
-
VIEW: APPS.PA_REP_RES_OVC_WK_V
12.1.1
-
VIEW: APPS.PA_REP_RES_OVC_WK_V
12.2.2
-
VIEW: APPS.PA_REP_RES_CAP_WKD_V
12.1.1
-
VIEW: APPS.PA_REP_RES_AVL_WK_V
12.1.1
-
VIEW: APPS.PA_REP_RES_AVL_WK_V
12.2.2
-
View: PA_REP_QUARTER_CAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_QUARTER_CAL_V, object_name:PA_REP_QUARTER_CAL_V, status:VALID, product: PA - Projects , description: PA_REP_QUARTER_CAL_V is a view to get calendar quarter numbers , implementation_dba_data: APPS.PA_REP_QUARTER_CAL_V ,
-
View: PA_REP_YEAR_CAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_YEAR_CAL_V, object_name:PA_REP_YEAR_CAL_V, status:VALID, product: PA - Projects , description: PA_REP_YEAR_CAL_V is a view to get Calendar year numbers , implementation_dba_data: APPS.PA_REP_YEAR_CAL_V ,
-
View: PA_REP_QUARTER_CAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_QUARTER_CAL_V, object_name:PA_REP_QUARTER_CAL_V, status:VALID, product: PA - Projects , description: PA_REP_QUARTER_CAL_V is a view to get calendar quarter numbers , implementation_dba_data: APPS.PA_REP_QUARTER_CAL_V ,
-
View: PA_REP_YEAR_CAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_YEAR_CAL_V, object_name:PA_REP_YEAR_CAL_V, status:VALID, product: PA - Projects , description: PA_REP_YEAR_CAL_V is a view to get Calendar year numbers , implementation_dba_data: APPS.PA_REP_YEAR_CAL_V ,
-
VIEW: APPS.PA_REP_QUARTER_CAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_QUARTER_CAL_V, object_name:PA_REP_QUARTER_CAL_V, status:VALID,
-
View: PA_REP_RES_CAP_WKD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_RES_CAP_WKD_V, object_name:PA_REP_RES_CAP_WKD_V, status:VALID, product: PA - Projects , description: PA_REP_RES_CAP_WKD_V is a view that shows resource capacity for a gloabl week , implementation_dba_data: APPS.PA_REP_RES_CAP_WKD_V ,
-
VIEW: APPS.PA_REP_QUARTER_CAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_QUARTER_CAL_V, object_name:PA_REP_QUARTER_CAL_V, status:VALID,
-
VIEW: APPS.PA_REP_YEAR_CAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_YEAR_CAL_V, object_name:PA_REP_YEAR_CAL_V, status:VALID,
-
VIEW: APPS.PA_REP_YEAR_CAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_YEAR_CAL_V, object_name:PA_REP_YEAR_CAL_V, status:VALID,
-
View: PA_REP_RES_CAP_WKD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_RES_CAP_WKD_V, object_name:PA_REP_RES_CAP_WKD_V, status:VALID, product: PA - Projects , description: PA_REP_RES_CAP_WKD_V is a view that shows resource capacity for a gloabl week , implementation_dba_data: APPS.PA_REP_RES_CAP_WKD_V ,
-
View: PA_REP_RES_OVC_WK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_RES_OVC_WK_V, object_name:PA_REP_RES_OVC_WK_V, status:VALID, product: PA - Projects , description: PA_REP_RES_OVC_WK_V is a view that shows resource capacity for a gloabl week , implementation_dba_data: APPS.PA_REP_RES_OVC_WK_V ,
-
View: PA_REP_RES_AVL_WK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_RES_AVL_WK_V, object_name:PA_REP_RES_AVL_WK_V, status:VALID, product: PA - Projects , description: PA_REP_RES_AVL_WK_V is a view that shows resource capacity for a gloabl week , implementation_dba_data: APPS.PA_REP_RES_AVL_WK_V ,
-
PACKAGE BODY: APPS.PA_RATE_PVT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_RATE_PVT_PKG, status:VALID,
-
View: PA_REP_RES_AVL_WK_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_RES_AVL_WK_V, object_name:PA_REP_RES_AVL_WK_V, status:VALID, product: PA - Projects , description: PA_REP_RES_AVL_WK_V is a view that shows resource capacity for a gloabl week , implementation_dba_data: APPS.PA_REP_RES_AVL_WK_V ,
-
PACKAGE BODY: APPS.PA_RATE_PVT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_RATE_PVT_PKG, status:VALID,
-
View: PA_REP_RES_OVC_WK_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_RES_OVC_WK_V, object_name:PA_REP_RES_OVC_WK_V, status:VALID, product: PA - Projects , description: PA_REP_RES_OVC_WK_V is a view that shows resource capacity for a gloabl week , implementation_dba_data: APPS.PA_REP_RES_OVC_WK_V ,
-
VIEW: APPS.PA_REP_PERIODS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_PERIODS_V, object_name:PA_REP_PERIODS_V, status:VALID,
-
VIEW: APPS.PA_REP_PERIOD_DATES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_PERIOD_DATES_V, object_name:PA_REP_PERIOD_DATES_V, status:VALID,
-
VIEW: APPS.PA_REP_PERIOD_DATES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_PERIOD_DATES_V, object_name:PA_REP_PERIOD_DATES_V, status:VALID,
-
VIEW: APPS.PA_REP_PERIODS_V
12.1.1
-
VIEW: APPS.PA_REP_RES_OVC_WK_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_RES_OVC_WK_V, object_name:PA_REP_RES_OVC_WK_V, status:VALID,
-
VIEW: APPS.PA_REP_RES_AVL_WK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_RES_AVL_WK_V, object_name:PA_REP_RES_AVL_WK_V, status:VALID,
-
VIEW: APPS.PA_REP_RES_CAP_WKD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_RES_CAP_WKD_V, object_name:PA_REP_RES_CAP_WKD_V, status:VALID,
-
VIEW: APPS.PA_REP_PERIOD_DATES_V
12.2.2
-
VIEW: APPS.PA_REP_RES_OVC_WK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_RES_OVC_WK_V, object_name:PA_REP_RES_OVC_WK_V, status:VALID,
-
VIEW: APPS.PA_REP_RES_CAP_WKD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_RES_CAP_WKD_V, object_name:PA_REP_RES_CAP_WKD_V, status:VALID,
-
VIEW: APPS.PA_REP_RES_AVL_WK_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_RES_AVL_WK_V, object_name:PA_REP_RES_AVL_WK_V, status:VALID,
-
VIEW: APPS.PA_REP_PERIODS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_PERIODS_V, object_name:PA_REP_PERIODS_V, status:VALID,
-
VIEW: APPS.PA_REP_PERIOD_DATES_V
12.1.1
-
VIEW: APPS.PA_REP_PERIODS_V
12.2.2
-
View: PA_REP_PERIODS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_PERIODS_V, object_name:PA_REP_PERIODS_V, status:VALID, product: PA - Projects , description: PA_REP_PERIODS_V displays the type of the period ,year ,name , implementation_dba_data: APPS.PA_REP_PERIODS_V ,
-
View: PA_REP_PERIOD_DATES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REP_PERIOD_DATES_V, object_name:PA_REP_PERIOD_DATES_V, status:VALID, product: PA - Projects , description: The PA_REP_PERIOD_DATES_V view displays information about period types such as the name of the period and the start and end dates. , implementation_dba_data: APPS.PA_REP_PERIOD_DATES_V ,