Search Results pqh_corps_fileres_v
Overview
PQH_CORPS_FILERES_V is a database view owned by the APPS schema in Oracle E-Business Suite, registered under the PQH — Public Sector HR product family. Its documented description is simply "Corp filere view." In practice, the view exposes a filtered, decoded projection of Corps (Corps of Engineers / public sector position classification) extra-information records where the information type equals "FILERE." The name FILERE is an internal abbreviation for "file reference," referring to a classification file reference — that is, the specific file, standard, or reference document associated with a Corps definition entry.
Unlike transactional tables, this view carries no data of its own. It is a read-only presentation layer that sanitizes and reshapes data stored in PQH_CORPS_EXTRA_INFO so that downstream reporting, forms, or integration logic can consume the classification file reference without re-implementing the decode rules. In the Oracle EBS reporting model, such views are frequently used as the source for concurrent program reports, Oracle Discoverer/BI Publisher data models, and custom PL/SQL lookups. The FILERE_NAME column is surfaced as a human-readable label, distinguishing this view from the raw base data where only a coded value is held.
Underlying Base Objects
The ETRM metadata documents three referenced base objects:
- PQH_CORPS_EXTRA_INFO (SYNONYM) — the only table referenced in the view's FROM clause, which is the actual store for Corps extra information records.
- HR_GENERAL (PACKAGE) — referenced indirectly through the call HR_GENERAL.DECODE_SHARED_TYPE, which converts a shared-type code into a display value.
- FND_NUMBER (PACKAGE) — referenced through FND_NUMBER.CANONICAL_TO_NUMBER, which converts the canonical number representation stored in INFORMATION4 into a numeric value.
The single-table FROM clause, restricted by INFORMATION_TYPE = 'FILERE', means the view behaves as a narrow slice over a generic key-value style extra-information table. The two package calls are invoked at runtime and are therefore dependencies that must be valid for the view to return correctly decoded output. The synonym for PQH_CORPS_EXTRA_INFO resolves to its underlying table in the same schema.
Key Columns
- CORPS_DEFINITION_ID — identifier of the parent Corps definition record to which the extra information belongs; the primary join key back to the Corps definition entity.
- CORPS_EXTRA_INFO_ID — unique identifier of the extra-information row itself, useful for point lookups and auditing.
- OBJECT_VERSION_NUMBER — optimistic locking / concurrency version stamp carried through from the base row.
- INFORMATION_TYPE — always 'FILERE' because the view is filtered on this value; retained for report clarity and consistency with the base structure.
- FILERE_NAME — the decoded, human-readable name of the file reference, produced by HR_GENERAL.DECODE_SHARED_TYPE applied to the canonical number of INFORMATION4.
- FILERE_CD — the raw INFORMATION4 value, i.e., the canonical or coded file-reference value before decoding.
Common Use Cases and Queries
The most common scenario is retrieving the classification file reference associated with a Corps definition for display on a report or form, avoiding the need to re-code the shared-type decode logic. A basic lookup by definition is shown below.
SELECT corps_definition_id, corps_extra_info_id, filere_name, filere_cd FROM apps.pqh_corps_fileres_v WHERE corps_definition_id = :p_definition_id;
To list all file references with their descriptive names, ordered for readability:
SELECT filere_cd, filere_name FROM apps.pqh_corps_fileres_v ORDER BY filere_name;
A validation query that tests whether the decode produced a value — that is, whether the shared-type lookup resolved successfully — is useful when diagnosing missing configuration:
SELECT corps_extra_info_id, filere_cd, filere_name FROM apps.pqh_corps_fileres_v WHERE filere_name IS NULL AND filere_cd IS NOT NULL;
Because the view is read-only and filtered, INSERT/UPDATE/DELETE statements are not supported; changes must be applied to PQH_CORPS_EXTRA_INFO directly. Reports and integrations should treat FILERE_NAME as the presentation value and FILERE_CD as the stable key when persisting references across systems.
Oracle Proprietary, Confidential Information — Legal Notices apply.
-
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 ,
-
SYNONYM: PUBLIC.PQH_CORPS_FILERES_V
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:PQH_CORPS_FILERES_V, status:VALID,
-
VIEW: APPS.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,
-
SYNONYM: APPS.PQH_CORPS_EXTRA_INFO
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PQH_CORPS_EXTRA_INFO, status:VALID,
-
SYNONYM: APPS.PQH_CORPS_EXTRA_INFO
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PQH_CORPS_EXTRA_INFO, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.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,
-
View: PQH_CORPS_NATURE_HGRID_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_CORPS_NATURE_HGRID_V, object_name:PQH_CORPS_NATURE_HGRID_V, status:VALID, product: PQH - Public Sector HR , description: Corp Nature view , implementation_dba_data: APPS.PQH_CORPS_NATURE_HGRID_V ,
-
12.1.1 DBA Data
12.1.1
-
View: PQH_CORPS_NATURE_HGRID_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_CORPS_NATURE_HGRID_V, object_name:PQH_CORPS_NATURE_HGRID_V, status:VALID, product: PQH - Public Sector HR , description: Corp Nature view , implementation_dba_data: APPS.PQH_CORPS_NATURE_HGRID_V ,
-
PACKAGE: APPS.FND_NUMBER
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_NUMBER, status:VALID,
-
PACKAGE: APPS.FND_NUMBER
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_NUMBER, status:VALID,
-
eTRM - PQH Tables and Views
12.1.1
description: This is a Copy of PQH_WORKSHEET_PERIODS table populated by EFC (Euro as functinoal currency) process. ,
-
PACKAGE: APPS.HR_GENERAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
eTRM - PQH Tables and Views
12.2.2
description: This is a Copy of PQH_WORKSHEET_PERIODS table populated by EFC (Euro as functinoal currency) process. ,
-
eTRM - PQH Tables and Views
12.1.1
description: This is a Copy of PQH_WORKSHEET_PERIODS table populated by EFC (Euro as functinoal currency) process. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - PQH Tables and Views
12.2.2
description: This is a Copy of PQH_WORKSHEET_PERIODS table populated by EFC (Euro as functinoal currency) process. ,