Search Results award_project
Overview
APPS.GMS_PROJECTS_BURDEN_V is a reporting view in Oracle EBS Grants Management (GMS), the module built on Oracle Projects (PA) to support sponsored research and award accounting. The view exposes a filtered list of projects from PA_PROJECTS that qualify as sponsored projects yet are not themselves award projects. Its name reflects its intended role: to surface the burden-bearing (indirect cost) project records associated with sponsored activities, distinct from the award header project that carries the award terms.
In EBS 12.1.1 and 12.2.2 the view is owned by APPS and is defined over PA_PROJECTS, GMS_PROJECT_TYPES, and the PA_PROJECT_STUS_UTILS package. It is typically consumed by burden and indirect cost calculations, sponsored project reporting, and integrations that need to enumerate active sponsored project structures. Because award-level projects are explicitly excluded, the view supports the operational (burden) side of the grant rather than the funding header. The presence of ORG_ID confirms it is a multi-org view, so queries must respect operating unit (MO) security.
Underlying Base Objects
The documented referenced base objects are:
- PA_PROJECTS (SYNONYM) — the master project table (aliased A) supplying SEGMENT1, NAME, DESCRIPTION, PROJECT_ID, ORG_ID, PROJECT_TYPE, TEMPLATE_FLAG, and PROJECT_STATUS_CODE.
- GMS_PROJECT_TYPES (VIEW) — classifies project types; here it filters on SPONSORED_FLAG = 'Y'.
- PA_PROJECT_STUS_UTILS (PACKAGE) — supplies the IS_PROJECT_STATUS_CLOSED function used to exclude closed projects.
The join is on PROJECT_TYPE between PA_PROJECTS and GMS_PROJECT_TYPES. The predicate A.PROJECT_TYPE <> 'AWARD_PROJECT' removes award headers, TEMPLATE_FLAG = 'N' excludes templates, SPONSORED_FLAG = 'Y' restricts to sponsored project types, and the status utility returns 'N' for non-closed projects. The result is a live, sponsored, non-award, non-closed, non-template project list. Note the view does not join PA_TASKS or burden schedule tables — it is project-level, not task- or cost-level, so it identifies the projects eligible for burden processing rather than computing burdens directly.
Key Columns
- SEGMENT1 — the user-facing project number; the primary business identifier used in reports and lookups.
- NAME — project name, as displayed in forms and inquiry screens.
- DESCRIPTION — descriptive text for the project, useful in listings and exports.
- PROJECT_ID — the internal primary key; join this to PA_PROJECTS, PA_TASKS, PA_EXPENDITURES, and burden tables rather than matching on SEGMENT1.
- ORG_ID — operating unit identifier; enforces multi-org access and must be included in MO-filtered queries.
Because the view is a thin projection over PA_PROJECTS, no computed burden amounts are exposed. Any indirect cost or burden value must be retrieved from the relevant burden schedule and expenditure tables keyed by PROJECT_ID.
Common Use Cases and Queries
Typical scenarios include populating burden project LOVs, validating that a sponsored project exists and is open before running cost allocation, and reconciling the set of sponsored burden projects for a period. A search for "award_project" maps here because the view is defined precisely by the exclusion of AWARD_PROJECT types, making it the natural counterpart to award-level inquiries.
List sponsored burden projects for an operating unit:
SELECT segment1, name, project_id, org_id FROM apps.gms_projects_burden_v WHERE org_id = :p_org_id ORDER BY segment1;
Retrieve a single project by number:
SELECT segment1, name, description, project_id FROM apps.gms_projects_burden_v WHERE segment1 = :p_number AND org_id = :p_org_id;
Join to tasks or expenditures for cost analysis:
SELECT v.segment1, t.task_number, e.raw_cost FROM apps.gms_projects_burden_v v, pa_tasks t, pa_expenditures e WHERE t.project_id = v.project_id AND e.task_id = t.task_id AND v.org_id = :p_org_id;
Always filter on ORG_ID to satisfy multi-org security, and avoid ordering by unindexed columns on large PA_PROJECTS populations.
-
VIEW: APPS.GMS_PROJECTS_BURDEN_V
12.1.1
-
VIEW: APPS.GMS_PROJECTS_BURDEN_V
12.2.2
-
VIEW: APPS.GMS_PROJECTS_V
12.2.2
-
VIEW: APPS.GMS_PROJECT_TYPES
12.1.1
-
VIEW: APPS.GMS_PROJECT_TYPES
12.2.2
-
VIEW: APPS.GMS_PROJECTS_V
12.1.1
-
VIEW: APPS.GMS_ACT_PROJECTS_BASIC_V
12.2.2
-
VIEW: APPS.PJM_PROJECTS_ALL_OU_V
12.1.1
-
VIEW: APPS.PA_PROJECTS_BASIC_V
12.1.1
-
VIEW: APPS.PJM_PROJECTS_ALL_OU_V
12.2.2
-
VIEW: APPS.GMS_STATUS_PROJ_GENERIC_V
12.2.2
-
VIEW: APPS.GMS_ACT_PROJECTS_BASIC_V
12.1.1
-
VIEW: APPS.PA_PROJECTS_BASIC_V
12.2.2
-
VIEW: APPS.GMS_STATUS_PROJ_GENERIC_V
12.1.1
-
VIEW: APPS.PA_PROJECTS_ALL_BASIC_V
12.1.1
-
VIEW: APPS.PA_PROJ_ALL_BASIC_UN_SEC_V
12.2.2
-
VIEW: APPS.PA_PROJ_ALL_BASIC_UN_SEC_V
12.1.1
-
VIEW: APPS.PA_PROJECTS_ALL_BASIC_V
12.2.2
-
View: GMS_PROJECT_TYPES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_PROJECT_TYPES, object_name:GMS_PROJECT_TYPES, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_PROJECT_TYPES ,
-
View: GMS_PROJECTS_BURDEN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_PROJECTS_BURDEN_V, object_name:GMS_PROJECTS_BURDEN_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_PROJECTS_BURDEN_V ,
-
View: GMS_PROJECTS_BURDEN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_PROJECTS_BURDEN_V, object_name:GMS_PROJECTS_BURDEN_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_PROJECTS_BURDEN_V ,
-
View: GMS_PROJECT_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_PROJECT_TYPES, object_name:GMS_PROJECT_TYPES, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_PROJECT_TYPES ,
-
View: GMS_PROJECTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_PROJECTS_V, object_name:GMS_PROJECTS_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_PROJECTS_V ,
-
View: PJM_PROJECTS_ALL_OU_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECTS_ALL_OU_V, object_name:PJM_PROJECTS_ALL_OU_V, status:VALID, product: PJM - Project Manufacturing , implementation_dba_data: APPS.PJM_PROJECTS_ALL_OU_V ,
-
View: PJM_PROJECTS_ALL_OU_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECTS_ALL_OU_V, object_name:PJM_PROJECTS_ALL_OU_V, status:VALID, product: PJM - Project Manufacturing , implementation_dba_data: APPS.PJM_PROJECTS_ALL_OU_V ,
-
View: GMS_PROJECTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_PROJECTS_V, object_name:GMS_PROJECTS_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_PROJECTS_V ,
-
View: PA_PROJECTS_BASIC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_BASIC_V, object_name:PA_PROJECTS_BASIC_V, status:VALID, product: PA - Projects , description: 10SC Only - Retrofitted , implementation_dba_data: APPS.PA_PROJECTS_BASIC_V ,
-
View: PA_PROJECTS_BASIC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_BASIC_V, object_name:PA_PROJECTS_BASIC_V, status:VALID, product: PA - Projects , description: 10SC Only - Retrofitted , implementation_dba_data: APPS.PA_PROJECTS_BASIC_V ,
-
APPS.PJI_PJP_EXTRACTION_UTILS SQL Statements
12.2.2
-
View: GMS_ACT_PROJECTS_BASIC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_ACT_PROJECTS_BASIC_V, object_name:GMS_ACT_PROJECTS_BASIC_V, status:VALID, product: GMS - Grants Accounting , description: Actual projects that could potentially be funded by awards excluding the award projects , implementation_dba_data: APPS.GMS_ACT_PROJECTS_BASIC_V ,
-
View: GMS_ACT_PROJECTS_BASIC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_ACT_PROJECTS_BASIC_V, object_name:GMS_ACT_PROJECTS_BASIC_V, status:VALID, product: GMS - Grants Accounting , description: Actual projects that could potentially be funded by awards excluding the award projects , implementation_dba_data: APPS.GMS_ACT_PROJECTS_BASIC_V ,
-
View: GMS_STATUS_PROJ_GENERIC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_PROJ_GENERIC_V, object_name:GMS_STATUS_PROJ_GENERIC_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_STATUS_PROJ_GENERIC_V ,
-
VIEW: APPS.PA_PROJECTS_ALL_EXPEND_V
12.1.1
-
View: GMS_STATUS_PROJ_GENERIC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_PROJ_GENERIC_V, object_name:GMS_STATUS_PROJ_GENERIC_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_STATUS_PROJ_GENERIC_V ,
-
View: PA_PROJ_ALL_BASIC_UN_SEC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_ALL_BASIC_UN_SEC_V, object_name:PA_PROJ_ALL_BASIC_UN_SEC_V, status:VALID, product: PA - Projects , description: View of the projects to which you can do search. (For subledgers LOV) , implementation_dba_data: APPS.PA_PROJ_ALL_BASIC_UN_SEC_V ,
-
View: PA_PROJ_ALL_BASIC_UN_SEC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_ALL_BASIC_UN_SEC_V, object_name:PA_PROJ_ALL_BASIC_UN_SEC_V, status:VALID, product: PA - Projects , description: View of the projects to which you can do search. (For subledgers LOV) , implementation_dba_data: APPS.PA_PROJ_ALL_BASIC_UN_SEC_V ,
-
View: PA_PROJECTS_ALL_BASIC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_ALL_BASIC_V, object_name:PA_PROJECTS_ALL_BASIC_V, status:VALID, product: PA - Projects , description: View of the projects to which you can do search. (For subledgers LOV) , implementation_dba_data: APPS.PA_PROJECTS_ALL_BASIC_V ,
-
VIEW: APPS.PA_PROJECTS_ALL_EXPEND_V
12.2.2
-
View: PA_PROJECTS_ALL_BASIC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_ALL_BASIC_V, object_name:PA_PROJECTS_ALL_BASIC_V, status:VALID, product: PA - Projects , description: View of the projects to which you can do search. (For subledgers LOV) , implementation_dba_data: APPS.PA_PROJECTS_ALL_BASIC_V ,
-
View: PA_PROJECTS_ALL_EXPEND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_ALL_EXPEND_V, object_name:PA_PROJECTS_ALL_EXPEND_V, status:VALID, product: PA - Projects , description: View of the projects to which you can do search. (For subledgers LOV) , implementation_dba_data: APPS.PA_PROJECTS_ALL_EXPEND_V ,
-
View: PA_PROJECTS_ALL_EXPEND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_ALL_EXPEND_V, object_name:PA_PROJECTS_ALL_EXPEND_V, status:VALID, product: PA - Projects , description: View of the projects to which you can do search. (For subledgers LOV) , implementation_dba_data: APPS.PA_PROJECTS_ALL_EXPEND_V ,
-
PACKAGE BODY: APPS.PJI_PJP_EXTRACTION_UTILS
12.2.2
-
APPS.PA_PROJECT_STUS_UTILS SQL Statements
12.2.2
-
APPS.PA_PROJECT_STUS_UTILS SQL Statements
12.1.1
-
PACKAGE BODY: APPS.GMS_EVT_BILLING
12.1.1
-
PACKAGE BODY: APPS.GMS_EVT_BILLING
12.2.2
-
VIEW: APPS.GMS_FUNDSCTL_RES_V
12.2.2
-
VIEW: APPS.GMS_FUNDSCTL_RES_V
12.1.1
-
APPS.PSP_XMLGEN SQL Statements
12.1.1
-
APPS.PSP_XMLGEN SQL Statements
12.2.2