Search Results expnd_typ_start_date_active
Overview
APPS.GMS_PQH_EXP_TYPES_V is a supplementary database view owned by the APPS schema in Oracle E-Business Suite, registered against FND Design Data identifier GMS.GMS_PQH_EXP_TYPES_V. It is documented as a "supplementary view used to simplify forms coding," meaning it exists primarily to flatten and join data from several Grants Management (GMS) and Projects (PA) base objects so that Oracle Forms-based screens can retrieve a consolidated row set without embedding complex join logic. Oracle explicitly warns that this view is not intended for direct querying or data manipulation by customers or integrators, and that its definition may change dramatically between minor or major releases. In EBS 12.1.1 and 12.2.2 the object resolves to a VALID status, confirming that all dependencies are compiled and present. The view surfaces expenditure type eligibility information in the context of awards, projects, and tasks, and it is consumed internally by the PQH_UTILITY package. The column naming convention (EXPND_TYP_START_DATE_ACTIVE, EXPND_TYP_END_DATE_ACTIVE) reflects the date-effective pattern used throughout EBS, though the user-supplied search term "expnd_typ_start_date_active" corresponds to the actual column EXPND_TYP_START_DATE_ACTIVE.
Underlying Base Objects
The view is defined over six documented dependencies, mixing synonyms, base tables, and other views. GMS_ALLOWABLE_EXPENDITURES is the core Grants table that ties allowable expenditure types to awards and project types. GMS_AWARDS provides award header context, while GMS_PROJECT_TYPES is itself a view supplying project type classification. On the Projects side, PA_EXPENDITURE_TYPES_EXPEND_V is a view over the expenditure type definitions in PA, PA_PROJECTS_ALL supplies project header records, and PA_TASKS supplies task-level detail. The resulting join lets the view present, for each expenditure type/project/task/award combination, the effective date window and operating unit. Because GMS_PROJECT_TYPES and PA_EXPENDITURE_TYPES_EXPEND_V are views rather than tables, any structural change to those underlying views propagates into GMS_PQH_EXP_TYPES_V, reinforcing Oracle's caution against direct dependency.
Key Columns
- EXPENDITURE_TYPE (VARCHAR2, 30) – The expenditure type name from PA, identifying the cost category.
- PROJECT_ID (NUMBER, 15) – Foreign key to PA_PROJECTS_ALL identifying the project context.
- TASK_ID (NUMBER, 15) – Foreign key to PA_TASKS identifying the task within the project.
- AWARD_ID (NUMBER, 15) – Foreign key to GMS_AWARDS identifying the linked award.
- EXPND_TYP_START_DATE_ACTIVE (DATE) – The start date from which the expenditure type is active for the given project/task/award combination.
- EXPND_TYP_END_DATE_ACTIVE (DATE) – The end date on which the expenditure type ceases to be active; a null value typically indicates an open-ended range.
- ORG_ID (NUMBER, 15) – The operating unit identifier, enabling multi-org security filtering.
Common Use Cases and Queries
Although Oracle discourages direct querying, developers and support analysts frequently inspect this view to diagnose why a particular expenditure type is or is not offered on a Grants transaction form. A typical diagnostic query checks the effective dates for a specific project and award:
- SELECT expenditure_type, project_id, task_id, award_id, expnd_typ_start_date_active, expnd_typ_end_date_active, org_id FROM apps.gms_pqh_exp_types_v WHERE project_id = :p_project_id AND award_id = :p_award_id;
- To find currently active expenditure types for an operating unit, filter where SYSDATE BETWEEN NVL(expnd_typ_start_date_active, SYSDATE) AND NVL(expnd_typ_end_date_active, SYSDATE) AND org_id = :p_org_id.
- To audit date windows, SELECT expenditure_type, expnd_typ_start_date_active, expnd_typ_end_date_active FROM apps.gms_pqh_exp_types_v WHERE expnd_typ_start_date_active > SYSDATE ORDER BY expnd_typ_start_date_active.
Because the view is referenced by APPS.PQH_UTILITY, its primary production role is supplying the Grants forms layer rather than serving as a public reporting interface. Integrations requiring stable expenditure type data should instead query the documented base objects such as PA_EXPENDITURE_TYPES_EXPEND_V or GMS_ALLOWABLE_EXPENDITURES directly.
-
VIEW: APPS.GMS_PQH_EXP_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_PQH_EXP_TYPES_V, object_name:GMS_PQH_EXP_TYPES_V, status:VALID,
-
VIEW: APPS.GMS_PQH_EXP_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_PQH_EXP_TYPES_V, object_name:GMS_PQH_EXP_TYPES_V, status:VALID,
-
VIEW: APPS.PA_EXPENDITURE_TYPES_EXPEND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EXPENDITURE_TYPES_EXPEND_V, object_name:PA_EXPENDITURE_TYPES_EXPEND_V, status:VALID,
-
VIEW: APPS.PA_ONLINE_EXPENDITURE_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ONLINE_EXPENDITURE_TYPES_V, object_name:PA_ONLINE_EXPENDITURE_TYPES_V, status:VALID,
-
VIEW: APPS.PA_ONLINE_EXPENDITURE_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ONLINE_EXPENDITURE_TYPES_V, object_name:PA_ONLINE_EXPENDITURE_TYPES_V, status:VALID,
-
VIEW: APPS.PA_EXPENDITURE_TYPES_EXPEND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EXPENDITURE_TYPES_EXPEND_V, object_name:PA_EXPENDITURE_TYPES_EXPEND_V, status:VALID,
-
View: PA_ONLINE_EXPENDITURE_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ONLINE_EXPENDITURE_TYPES_V, object_name:PA_ONLINE_EXPENDITURE_TYPES_V, status:VALID, product: PA - Projects , description: Customizable view for expenditure types used in Self Service Time application. , implementation_dba_data: APPS.PA_ONLINE_EXPENDITURE_TYPES_V ,
-
View: GMS_PQH_EXP_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_PQH_EXP_TYPES_V, object_name:GMS_PQH_EXP_TYPES_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_PQH_EXP_TYPES_V ,
-
View: GMS_PQH_EXP_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_PQH_EXP_TYPES_V, object_name:GMS_PQH_EXP_TYPES_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_PQH_EXP_TYPES_V ,
-
View: PA_ONLINE_EXPENDITURE_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ONLINE_EXPENDITURE_TYPES_V, object_name:PA_ONLINE_EXPENDITURE_TYPES_V, status:VALID, product: PA - Projects , description: Customizable view for expenditure types used in Self Service Time application. , implementation_dba_data: APPS.PA_ONLINE_EXPENDITURE_TYPES_V ,
-
View: PA_EXPENDITURE_TYPES_EXPEND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EXPENDITURE_TYPES_EXPEND_V, object_name:PA_EXPENDITURE_TYPES_EXPEND_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_EXPENDITURE_TYPES_EXPEND_V ,
-
View: PA_EXPENDITURE_TYPES_EXPEND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EXPENDITURE_TYPES_EXPEND_V, object_name:PA_EXPENDITURE_TYPES_EXPEND_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_EXPENDITURE_TYPES_EXPEND_V ,
-
APPS.PA_EXPENDITURES_UTILS SQL Statements
12.1.1
-
APPS.PA_EXPENDITURES_UTILS SQL Statements
12.2.2
-
APPS.PQH_UTILITY SQL Statements
12.2.2
-
APPS.PQH_UTILITY SQL Statements
12.1.1
-
APPS.IGC_CC_OPEN_INTERFACE_PKG SQL Statements
12.1.1
-
APPS.IGC_CC_OPEN_INTERFACE_PKG SQL Statements
12.2.2
-
APPS.IGC_CC_OPEN_INTERFACE_PKG dependencies on PA_EXPENDITURE_TYPES_EXPEND_V
12.1.1
-
APPS.IGC_CC_OPEN_INTERFACE_PKG dependencies on PA_EXPENDITURE_TYPES_EXPEND_V
12.2.2
-
PACKAGE BODY: APPS.PA_EXPENDITURES_UTILS
12.1.1
-
APPS.PA_UTILS2 dependencies on PA_EXPENDITURE_TYPES_EXPEND_V
12.1.1
-
APPS.PA_EXPENDITURES_UTILS dependencies on PA_EXPENDITURE_TYPES_EXPEND_V
12.1.1
-
APPS.PA_EXPENDITURES_UTILS dependencies on PA_EXPENDITURE_TYPES_EXPEND_V
12.2.2
-
APPS.PA_UTILS2 dependencies on PA_EXPENDITURE_TYPES_EXPEND_V
12.2.2
-
APPS.PA_OTC_API dependencies on PA_ONLINE_EXPENDITURE_TYPES_V
12.2.2
-
APPS.PN_LEASE_PVT dependencies on PA_EXPENDITURE_TYPES_EXPEND_V
12.2.2
-
APPS.PA_OTC_API dependencies on PA_ONLINE_EXPENDITURE_TYPES_V
12.1.1
-
APPS.PA_UTILS2 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PA_EXPENDITURES_UTILS
12.2.2
-
APPS.PQH_UTILITY dependencies on GMS_PQH_EXP_TYPES_V
12.2.2
-
APPS.PQH_UTILITY dependencies on GMS_PQH_EXP_TYPES_V
12.1.1
-
APPS.PA_UTILS2 SQL Statements
12.2.2
-
APPS.PA_OTC_API SQL Statements
12.2.2
-
APPS.PA_OTC_API SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGC_CC_OPEN_INTERFACE_PKG
12.1.1
-
PACKAGE BODY: APPS.IGC_CC_OPEN_INTERFACE_PKG
12.2.2
-
PACKAGE BODY: APPS.PQH_UTILITY
12.2.2
-
PACKAGE BODY: APPS.PQH_UTILITY
12.1.1
-
APPS.PN_LEASE_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PA_OTC_API
12.1.1
-
PACKAGE BODY: APPS.PA_UTILS2
12.2.2
-
PACKAGE BODY: APPS.PA_OTC_API
12.2.2
-
PACKAGE BODY: APPS.PA_UTILS2
12.1.1
-
eTRM - GMS Tables and Views
12.1.1
description: Versions of award and budget workflows. There can be many workflows for an award or budget. ,
-
eTRM - GMS Tables and Views
12.2.2
description: Versions of award and budget workflows. There can be many workflows for an award or budget. ,
-
PACKAGE BODY: APPS.PN_LEASE_PVT
12.2.2
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.2.2