Search Results pqh_corps_extra_info
Overview
PQH_CORPS_EXTRA_INFO is a Public Sector HR (PQH) transactional table in the Oracle E-Business Suite database, owned by the HR schema. It stores supplemental "corps extra information" records associated with Corps definitions, providing a flexible, denormalized repository for capturing user-defined detail data that is not represented by dedicated columns in adjacent Public Sector tables. In EBS 12.1.1 and 12.2.2 the table is documented as VALID and is referenced in the ETRM repository with a primary key named PQH_CORPS_EXTRA_INFO_PK.
The ETRM Data Vault classification for this object is standalone, mined heuristically from the foreign-key structure. Interpreted as a modeling suggestion, this indicates the table is neither a pure hub nor a link, and is best treated as an attribute-bearing satellite anchored to the Corps definition entity. Because only one foreign key is documented — CORPS_DEFINITION_ID referencing PQH_CORPS_DEFINITIONS — the table functions as a dependent detail store hanging off the Corps definition rather than as an independent master.
Key Information Stored
The physical schema documents 71 columns. The most significant are:
- CORPS_EXTRA_INFO_ID — surrogate primary key, derived from the unique index PQH_CORPS_EXTRA_INFO_PK. This is the only documented unique index; no alternate business key is defined at the schema level.
- CORPS_DEFINITION_ID — foreign key to PQH_CORPS_DEFINITIONS, establishing the parent Corps definition for each detail row.
- INFORMATION_TYPE and INFORMATION_CATEGORY — classification columns that determine how the payload is interpreted.
- INFORMATION1 through INFORMATION30 — thirty generic information slots holding the actual supplemental values. These are typically overloaded based on INFORMATION_TYPE.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE30 — the standard EBS descriptive-flexfield style attribute columns, enabling configurable, non-coded detail capture.
- OBJECT_VERSION_NUMBER — optimistic locking and concurrency control for the row.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, CREATION_DATE, CREATED_BY — the standard EBS audit Who columns.
The structure reflects the classic EBS pattern of combining a small set of typed columns with a large generic attribute block, avoiding schema changes as new Corps detail requirements emerge.
Common Use Cases and Queries
Typical scenarios involve reporting supplemental Corps attributes and reconciling detail rows back to their parent definitions.
- Retrieve all extra information for a given Corps definition:
SELECT e.corps_extra_info_id, e.information_type, e.information1, e.attribute1 FROM hr.pqh_corps_extra_info e WHERE e.corps_definition_id = :definition_id; - Join to the parent to produce a detail report:
SELECT d.corps_definition_id, e.information_category, e.attribute1 FROM hr.pqh_corps_definitions d, hr.pqh_corps_extra_info e WHERE d.corps_definition_id = e.corps_definition_id; - Filter by information type to extract a specific payload category, or pivot the INFORMATION1..30 columns into a vertical report for downstream analytics.
Because the attribute columns are flexfield-style, reporting tools (BI Publisher, OTBI, or custom SQL) should always resolve the meaning of ATTRIBUTE_CATEGORY and INFORMATION_TYPE before interpreting the values.
Related Objects
- PQH_CORPS_DEFINITIONS — parent entity; joined on CORPS_DEFINITION_ID.
- PQH_CORPS_EXTRA_INFO_PK — the primary key index supporting unique row access.
- HR schema public APIs / PL/SQL packages in the PQH module that populate and validate this table.
- PQH_CORPS and associated Public Sector Corps tables that share the definition context.
- Standard EBS audit/Who columns sourced from FND_USER via LAST_UPDATED_BY and CREATED_BY.
Administrators should treat this table as a dependent detail store and preserve referential integrity with PQH_CORPS_DEFINITIONS when purging or archiving Corps data.
-
Table: PQH_CORPS_EXTRA_INFO
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PQH.PQH_CORPS_EXTRA_INFO, object_name:PQH_CORPS_EXTRA_INFO, status:VALID, product: PQH - Public Sector HR , description: Corp Extra Information details , implementation_dba_data: HR.PQH_CORPS_EXTRA_INFO ,
-
Table: PQH_CORPS_EXTRA_INFO
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PQH.PQH_CORPS_EXTRA_INFO, object_name:PQH_CORPS_EXTRA_INFO, status:VALID, product: PQH - Public Sector HR , description: Corp Extra Information details , implementation_dba_data: HR.PQH_CORPS_EXTRA_INFO ,
-
APPS.PQH_CEI_BUS SQL Statements
12.2.2
-
APPS.PQH_CEI_BUS SQL Statements
12.1.1
-
VIEW: APPS.PQH_CORPS_ORGANIZATIONS_V
12.2.2
-
VIEW: APPS.PQH_CORPS_FILERES_V
12.1.1
-
SYNONYM: PUBLIC.PQH_CORPS_EXTRA_INFO
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:PQH_CORPS_EXTRA_INFO, status:VALID,
-
VIEW: APPS.PQH_CORPS_DOCUMENTS_V
12.1.1
-
VIEW: APPS.PQH_CORPS_DOCUMENTS_V
12.2.2
-
VIEW: APPS.PQH_CORPS_RULES_V
12.2.2
-
VIEW: APPS.PQH_CORPS_FILERES_V
12.2.2
-
VIEW: APPS.PQH_CORPS_ORGANIZATIONS_V
12.1.1
-
VIEW: APPS.PQH_CORPS_RULES_V
12.1.1
-
VIEW: APPS.PQH_CORPS_GRADES_V
12.2.2
-
SYNONYM: APPS.PQH_CORPS_EXTRA_INFO
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PQH_CORPS_EXTRA_INFO, status:VALID,
-
VIEW: APPS.PQH_CORPS_EXAMS_V
12.2.2
-
VIEW: APPS.PQH_CORPS_TRAININGS_V
12.1.1
-
VIEW: APPS.PQH_CORPS_TRAININGS_V
12.2.2
-
VIEW: APPS.PQH_CORPS_EXAMS_V
12.1.1
-
VIEW: APPS.PQH_CORPS_GRADES_V
12.1.1
-
SYNONYM: APPS.PQH_CORPS_EXTRA_INFO
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PQH_CORPS_EXTRA_INFO, status:VALID,
-
APPS.PQH_CEI_SHD SQL Statements
12.2.2
-
APPS.PQH_CEI_SHD SQL Statements
12.1.1
-
VIEW: HR.PQH_CORPS_EXTRA_INFO#
12.2.2
owner:HR, object_type:VIEW, object_name:PQH_CORPS_EXTRA_INFO#, status:VALID,
-
View: PQH_CORPS_ORGANIZATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_CORPS_ORGANIZATIONS_V, object_name:PQH_CORPS_ORGANIZATIONS_V, status:VALID, product: PQH - Public Sector HR , description: Corp organization View , implementation_dba_data: APPS.PQH_CORPS_ORGANIZATIONS_V ,
-
View: PQH_CORPS_ORGANIZATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_CORPS_ORGANIZATIONS_V, object_name:PQH_CORPS_ORGANIZATIONS_V, status:VALID, product: PQH - Public Sector HR , description: Corp organization View , implementation_dba_data: APPS.PQH_CORPS_ORGANIZATIONS_V ,
-
View: PQH_CORPS_FILERES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_CORPS_FILERES_V, object_name:PQH_CORPS_FILERES_V, status:VALID, product: PQH - Public Sector HR , description: Corp filere view , implementation_dba_data: APPS.PQH_CORPS_FILERES_V ,
-
View: PQH_CORPS_FILERES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_CORPS_FILERES_V, object_name:PQH_CORPS_FILERES_V, status:VALID, product: PQH - Public Sector HR , description: Corp filere view , implementation_dba_data: APPS.PQH_CORPS_FILERES_V ,
-
TRIGGER: APPS.PQH_CORPS_EXTRA_INFO_WHO
12.2.2
owner:APPS, object_type:TRIGGER, object_name:PQH_CORPS_EXTRA_INFO_WHO, status:VALID,
-
View: PQH_CORPS_GRADES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_CORPS_GRADES_V, object_name:PQH_CORPS_GRADES_V, status:VALID, product: PQH - Public Sector HR , implementation_dba_data: APPS.PQH_CORPS_GRADES_V ,
-
View: PQH_CORPS_GRADES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_CORPS_GRADES_V, object_name:PQH_CORPS_GRADES_V, status:VALID, product: PQH - Public Sector HR , implementation_dba_data: APPS.PQH_CORPS_GRADES_V ,
-
APPS.PQH_CORPS_EXTRA_INFO_API SQL Statements
12.2.2
-
TRIGGER: APPS.PQH_CORPS_EXTRA_INFO_WHO
12.1.1
owner:APPS, object_type:TRIGGER, object_name:PQH_CORPS_EXTRA_INFO_WHO, status:VALID,
-
VIEW: HR.PQH_CORPS_EXTRA_INFO#
12.2.2
-
PACKAGE BODY: APPS.PQH_CEI_BUS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_CEI_BUS, status:VALID,
-
View: PQH_CORPS_RULES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_CORPS_RULES_V, object_name:PQH_CORPS_RULES_V, status:VALID, product: PQH - Public Sector HR , description: Corp Rules View , implementation_dba_data: APPS.PQH_CORPS_RULES_V ,
-
View: PQH_CORPS_EXAMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_CORPS_EXAMS_V, object_name:PQH_CORPS_EXAMS_V, status:VALID, product: PQH - Public Sector HR , description: Corp Exam View , implementation_dba_data: APPS.PQH_CORPS_EXAMS_V ,
-
TABLE: HR.PQH_CORPS_EXTRA_INFO
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PQH.PQH_CORPS_EXTRA_INFO, object_name:PQH_CORPS_EXTRA_INFO, status:VALID,
-
PACKAGE BODY: APPS.PQH_CEI_DEL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_CEI_DEL, status:VALID,
-
PACKAGE BODY: APPS.PQH_FR_QUOTA_CHECK
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_FR_QUOTA_CHECK, status:VALID,
-
View: PQH_CORPS_TRAININGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_CORPS_TRAININGS_V, object_name:PQH_CORPS_TRAININGS_V, status:VALID, product: PQH - Public Sector HR , implementation_dba_data: APPS.PQH_CORPS_TRAININGS_V ,
-
PACKAGE BODY: APPS.PQH_CEI_SHD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_CEI_SHD, status:VALID,
-
View: PQH_CORPS_EXAMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_CORPS_EXAMS_V, object_name:PQH_CORPS_EXAMS_V, status:VALID, product: PQH - Public Sector HR , description: Corp Exam View , implementation_dba_data: APPS.PQH_CORPS_EXAMS_V ,
-
APPS.PQH_CORPS_EXTRA_INFO_API SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PQH_CEI_DEL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_CEI_DEL, status:VALID,
-
PACKAGE BODY: APPS.PQH_CEI_BUS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_CEI_BUS, status:VALID,
-
View: PQH_CORPS_DOCUMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_CORPS_DOCUMENTS_V, object_name:PQH_CORPS_DOCUMENTS_V, status:VALID, product: PQH - Public Sector HR , description: Corp Document View , implementation_dba_data: APPS.PQH_CORPS_DOCUMENTS_V ,
-
View: PQH_CORPS_DOCUMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_CORPS_DOCUMENTS_V, object_name:PQH_CORPS_DOCUMENTS_V, status:VALID, product: PQH - Public Sector HR , description: Corp Document View , implementation_dba_data: APPS.PQH_CORPS_DOCUMENTS_V ,
-
PACKAGE BODY: APPS.PQH_CEI_UPD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_CEI_UPD, status:VALID,
-
PACKAGE BODY: APPS.PQH_CEI_UPD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PQH_CEI_UPD, status:VALID,