Search Results valid_group_flag
Overview
APPS.PA_RESOURCE_GROUPS_VALID_V is a supplementary Oracle E-Business Suite view owned by the APPS schema and registered in the Application Object Library under the FND Design Data name PA.PA_RESOURCE_GROUPS_VALID_V. The view is documented as VALID and is explicitly classified as "a supplementary view used to simplify forms coding." Oracle's own documentation issues a standing caution that this view is not intended as a public interface for ad hoc query or data manipulation, and that its definition may change substantially between minor or major releases.
Functionally, the view presents a consolidated, denormalized list of Project Accounting resource groups together with their associated resource type, descriptive name, validity indicator, and effective date range. It exposes six columns: RESOURCE_GROUP, RESOURCE_GROUP_NAME, GROUP_RESOURCE_TYPE_ID, VALID_GROUP_FLAG, START_DATE_ACTIVE, and END_DATE_ACTIVE. Because it flattens resource group and resource type information into a single row, it is convenient for form-level List of Values (LOV) population and lightweight validation logic within Oracle Projects, even though Oracle discourages treating it as a reporting layer.
Underlying Base Objects
The documented ETRM dependency list identifies two base objects referenced by the view: PA_RESOURCE_TYPES and FND_LOOKUP_VALUES, both surfaced in the APPS schema as synonyms. PA_RESOURCE_TYPES supplies the resource group definitions and resource type identity, while FND_LOOKUP_VALUES contributes the lookup-driven values that populate the validity flag semantics and related reference data. The join between these objects provides the denormalized shape presented by the view.
The view is documented as referenced by several downstream consumers, including PA_CREATE_RESOURCE, PA_QRY_RESOURCE_LISTS_V, and the PA_RESOURCE_PUB package, each of which carries dependent code. This confirms the view's role as an internal building block for Oracle Projects resource group validation and creation flows rather than a standalone reporting object.
Key Columns
- RESOURCE_GROUP (VARCHAR2, 30) — The short identifier for a Project Accounting resource group.
- RESOURCE_GROUP_NAME (VARCHAR2, 80) — The descriptive, user-facing name of the resource group.
- GROUP_RESOURCE_TYPE_ID (NUMBER) — The numeric identifier linking the group to its resource type.
- VALID_GROUP_FLAG (CHAR) — The validity indicator for the resource group. This is the column most directly relevant to searches on the term "valid_group_flag," and it gates whether a group is treated as active for downstream validation.
- START_DATE_ACTIVE (DATE) — The date from which the resource group becomes effective.
- END_DATE_ACTIVE (DATE) — The date on which the resource group ceases to be effective.
Common Use Cases and Queries
Typical scenarios include populating resource group LOVs in Oracle Projects forms, validating a resource group reference before resource creation, and filtering active resource groups for a given effective date. A representative query is:
SELECT RESOURCE_GROUP, RESOURCE_GROUP_NAME, GROUP_RESOURCE_TYPE_ID, VALID_GROUP_FLAG, START_DATE_ACTIVE, END_DATE_ACTIVE FROM APPS.PA_RESOURCE_GROUPS_VALID_V;
To restrict results to currently valid resource groups, filter on the flag and effective dates, for example:
SELECT RESOURCE_GROUP, RESOURCE_GROUP_NAME FROM APPS.PA_RESOURCE_GROUPS_VALID_V WHERE VALID_GROUP_FLAG = 'Y' AND SYSDATE BETWEEN START_DATE_ACTIVE AND NVL(END_DATE_ACTIVE, SYSDATE);
Given Oracle's explicit warning, production customizations should prefer documented base tables over this supplementary view, particularly when long-term upgrade stability is required.
-
VIEW: APPS.PA_RESOURCE_GROUPS_VALID_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_GROUPS_VALID_V, object_name:PA_RESOURCE_GROUPS_VALID_V, status:VALID,
-
VIEW: APPS.PA_RESOURCE_GROUPS_VALID_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_GROUPS_VALID_V, object_name:PA_RESOURCE_GROUPS_VALID_V, status:VALID,
-
View: PA_RESOURCE_GROUPS_VALID_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_GROUPS_VALID_V, object_name:PA_RESOURCE_GROUPS_VALID_V, status:VALID, product: PA - Projects , description: This view displays all the valid resource types which you can group a Resource List by , implementation_dba_data: APPS.PA_RESOURCE_GROUPS_VALID_V ,
-
View: PA_RESOURCE_GROUPS_VALID_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_GROUPS_VALID_V, object_name:PA_RESOURCE_GROUPS_VALID_V, status:VALID, product: PA - Projects , description: This view displays all the valid resource types which you can group a Resource List by , implementation_dba_data: APPS.PA_RESOURCE_GROUPS_VALID_V ,
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.2.2