Search Results training_duration
Overview
PQH_CORPS_TRAININGS_V is an APPS-owned database view within the Oracle E-Business Suite Public Sector HR (PQH) product family. It exposes training-related qualification records captured against CORPS definitions, presenting them in a denormalized, human-readable form suitable for reporting, integration, and functional inquiry. The view is documented as VALID in ETRM for releases 12.1.1 and 12.2.2 and is registered in the APPS schema.
Its central purpose is to translate the generic columnar structure of PQH_CORPS_EXTRA_INFO — where CORPS attributes are stored positionally as INFORMATION1 through INFORMATIONn — into meaningful business columns such as QUALIFICATION, INSTITUTION_NAME, TRAINING_DURATION, and MANDATORY_FLAG. Because the view joins to qualification and organization reference data, consumers avoid re-implementing lookup and decode logic. This makes it a preferred source for reports, extracts, and interfaces that need CORPS training content without direct knowledge of the underlying flexfield-style storage.
Underlying Base Objects
The view is defined over three directly referenced sources and depends on several additional objects for decoding and security. Documented base and dependent objects are:
- PQH_CORPS_EXTRA_INFO (synonym) — the primary driving table. Columns
INFORMATION_TYPE,INFORMATION3throughINFORMATION8supply qualification, institution, duration, joining way, and mandatory flag values. - PER_QUALIFICATION_TYPES_TL (synonym) — aliased
QUA; joined onQUALIFICATION_TYPE_ID = CEI.INFORMATION3to resolveQUA.NAMEasQUALIFICATION. - HR_ORGANIZATION_UNITS (view) — aliased
ORG; joined onORGANIZATION_ID = CEI.INFORMATION4to resolveORG.NAMEasINSTITUTION_NAME. - HR_GENERAL (package) — provides
DECODE_LOOKUP, used to translateINFORMATION6(duration UOM) via theFREQUENCYlookup andINFORMATION7(joining way) viaPQH_CORPS_WAYS. - HR_SECURITY (package) — documented dependency supplying row-level security for organization-based access.
The defining predicate CEI.INFORMATION_TYPE = 'TRAINING' restricts output to training records, excluding other CORPS extra information categories stored in the same table.
Key Columns
CORPS_DEFINITION_ID— identifies the CORPS definition to which the training record belongs.CORPS_EXTRA_INFO_ID— surrogate key of the underlyingPQH_CORPS_EXTRA_INFOrow; useful for drill-through.OBJECT_VERSION_NUMBER— optimistic locking column carried from the base row.INFORMATION_TYPE— always'TRAINING'in this view; carried through as a discriminator.QUALIFICATION/QUALIFICATION_ID— the qualification name resolved fromPER_QUALIFICATION_TYPES_TLand its underlying ID (INFORMATION3). Users searching on qualification_id typically filter here.INSTITUTION_NAME/INSTITUTION_ID— organization name and ID (INFORMATION4) of the awarding or delivering institution.TRAINING_DURATION/TRAINING_DURATION_UOM/UOM_DESC— numeric duration, its lookup code, and the decoded description from theFREQUENCYlookup.JOINING_WAY_CD/JOINING_WAY— raw code and decoded description fromPQH_CORPS_WAYS.MANDATORY_FLAG— indicates whether the training is required.
Common Use Cases and Queries
Typical uses include CORPS training inventories, qualification compliance reporting, integration extracts to external HR or LMS systems, and institution-level training analytics.
Retrieve all training for a CORPS definition:
SELECT corps_definition_id, qualification, institution_name,
training_duration, uom_desc, mandatory_flag
FROM apps.pqh_corps_trainings_v
WHERE corps_definition_id = :p_corps_definition_id;
Filter by qualification, matching the common qualification_id search pattern:
SELECT corps_definition_id, qualification, institution_name FROM apps.pqh_corps_trainings_v WHERE qualification_id = :p_qualification_id;
List mandatory training by institution:
SELECT institution_name, qualification, joining_way FROM apps.pqh_corps_trainings_v WHERE mandatory_flag = 'Y' ORDER BY institution_name, qualification;
Because organization security is enforced through HR_SECURITY on the underlying organization join, results are automatically restricted according to the runtime user's security profile, making the view safe for shared reporting responsibilities.
-
View: PQH_CORPS_TRAININGS_V
12.1.1
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 ,
-
VIEW: APPS.PQH_CORPS_TRAININGS_V
12.2.2
-
View: OTFV_COMBINED_TRAINING_HISTORY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_COMBINED_TRAINING_HISTORY, object_name:OTFV_COMBINED_TRAINING_HISTORY, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_COMBINED_TRAINING_HISTORY ,
-
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 ,
-
VIEW: APPS.PQH_CORPS_TRAININGS_V
12.1.1
-
VIEW: APPS.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,
-
View: OTFV_COMBINED_TRAINING_HISTORY
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_COMBINED_TRAINING_HISTORY, object_name:OTFV_COMBINED_TRAINING_HISTORY, status:VALID, product: OTA - Learning Management , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.OTFV_COMBINED_TRAINING_HISTORY ,
-
VIEW: APPS.OTFV_COMBINED_TRAINING_HISTORY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_COMBINED_TRAINING_HISTORY, object_name:OTFV_COMBINED_TRAINING_HISTORY, status:VALID,
-
VIEW: APPS.PQH_CORPS_TRAININGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_CORPS_TRAININGS_V, object_name:PQH_CORPS_TRAININGS_V, status:VALID,
-
VIEW: APPS.OTFV_COMBINED_TRAINING_HISTORY
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTFV_COMBINED_TRAINING_HISTORY, object_name:OTFV_COMBINED_TRAINING_HISTORY, status:VALID,
-
VIEW: APPS.OTFV_COMBINED_TRAINING_HISTORY
12.2.2
-
VIEW: APPS.OTFV_COMBINED_TRAINING_HISTORY
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. ,
-
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. ,
-
eTRM - OTA Tables and Views
12.2.2
description: Currently not used ,
-
eTRM - OTA Tables and Views
12.1.1
description: Currently not used ,