Search Results billed_amount
Overview
GMS_STATUS_ACTUALS_BASE1_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, defined within the Grants Accounting (GMS) product family. Its purpose is to consolidate award-level actuals — revenue, billed, raw cost, and burdened cost amounts — into a single denormalized structure keyed by award, project, task, and expenditure item. The view is registered as VALID in both the 12.1.1 and 12.2.2 releases and is referenced by grant status inquiry and reporting logic that reconciles award funding against project cost activity.
The view serves as an intermediate aggregation layer rather than a transactional table. It unions two distinct sources: distribution-level cost rows from GMS award distributions joined to PA cost distribution lines, and burden component events that carry revenue or invoice event types. The union is then grouped so that each award/project/task/expenditure item combination yields a single row containing summarized REVENUE_AMOUNT, BILLED_AMOUNT, RAW_COST, and BURDENED_COST values. Because the view exposes BILLED_AMOUNT directly, it is frequently targeted by queries that attempt to report invoiced or billed amounts against sponsored awards.
Underlying Base Objects
The documented base objects referenced by this view are:
- GMS_AWARD_DISTRIBUTIONS (SYNONYM) — aliased ADL in the view text; supplies AWARD_ID, PROJECT_ID, TASK_ID, EXPENDITURE_ITEM_ID, RAW_COST, the REVENUE_DISTRIBUTED_FLAG and BILLED_FLAG indicators, ADL_STATUS, DOCUMENT_TYPE, CDL_LINE_NUM, and ADL_LINE_NUM.
- GMS_BURDEN_COMPONENTS (SYNONYM) — aliased GBC; supplies expenditure item, event type, event number, and amount for burden component events.
- PA_COST_DISTRIBUTION_LINES_ALL (SYNONYM) — aliased CDL; supplies BURDENED_COST, PA_DATE, GL_DATE, LINE_NUM, EXPENDITURE_ITEM_ID, and SYSTEM_REFERENCE2 (converted to a numeric INVOICE_ID).
Joins are driven by EXPENDITURE_ITEM_ID combined with line number matching (CDL.LINE_NUM = ADL.CDL_LINE_NUM), and for the burden component branch additional matching on ADL_LINE_NUM. Only rows with DOCUMENT_TYPE = 'EXP' and ADL_STATUS = 'A' are included. The view therefore depends directly on Projects (PA) cost distribution data and on Grants Accounting award distribution data; without consistent expenditure item identifiers across both schemas, the join yields no rows.
Key Columns
- AWARD_ID, PROJECT_ID, TASK_ID — the award and project/task hierarchy keys under which actuals are accumulated.
- EXPENDITURE_ITEM_ID — the finest granularity retained in the grouping; each row represents one expenditure item.
- REVENUE_AMOUNT — derived from RAW_COST when REVENUE_DISTRIBUTED_FLAG is 'Y', or from GMS_BURDEN_COMPONENTS amounts where EVENT_TYPE is 'REVENUE'.
- BILLED_AMOUNT — derived from RAW_COST when BILLED_FLAG is 'Y', or from burden component amounts where EVENT_TYPE is 'INVOICE'. This column is the primary target of searches for billed amount information against awards.
- RAW_COST, BURDENED_COST — raw cost originates from GMS_AWARD_DISTRIBUTIONS; burdened cost from PA_COST_DISTRIBUTION_LINES_ALL. Both are zeroed in the burden component branch of the union.
- PA_DATE, GL_DATE — accounting and general ledger dates carried from the cost distribution lines.
- INVOICE_ID — numeric conversion of SYSTEM_REFERENCE2, linking the row to the associated invoice where present.
Common Use Cases and Queries
Typical usage includes award status reporting, reconciliation of billed versus revenue-recognized amounts, and drill-down from grant status inquiries to expenditure item detail. A representative query retrieving billed amounts by award is:
SELECT award_id, project_id, task_id, expenditure_item_id, billed_amount, revenue_amount, raw_cost, burdened_cost FROM apps.gms_status_actuals_base1_v WHERE award_id = :p_award_id ORDER BY project_id, task_id, expenditure_item_id;SELECT award_id, SUM(billed_amount) billed_total FROM apps.gms_status_actuals_base1_v GROUP BY award_id;SELECT invoice_id, SUM(billed_amount) FROM apps.gms_status_actuals_base1_v WHERE invoice_id IS NOT NULL GROUP BY invoice_id;
Because the view performs aggregation and a UNION ALL internally, queries should restrict by AWARD_ID or date range where possible to limit execution cost. The BILLED_AMOUNT and REVENUE_AMOUNT columns reflect flag-based derivation rather than direct invoice line amounts, so reconciliation against AR invoice lines should account for this distinction.
-
View: GMS_STATUS_ACTUALS_BASE1_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_ACTUALS_BASE1_V, object_name:GMS_STATUS_ACTUALS_BASE1_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_STATUS_ACTUALS_BASE1_V ,
-
VIEW: APPS.GMS_STATUS_ACTUALS_BASE1_V
12.1.1
-
VIEW: AP.AP_CC_TRX_DETAILS_ARC#
12.2.2
-
View: GMS_STATUS_ACTUALS_BASE1_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_ACTUALS_BASE1_V, object_name:GMS_STATUS_ACTUALS_BASE1_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_STATUS_ACTUALS_BASE1_V ,
-
VIEW: APPS.GMS_STATUS_ACTUALS_BASE1_V
12.2.2
-
VIEW: AP.AP_CC_TRX_DETAILS#
12.2.2
-
VIEW: EAM.EAM_WORK_ORDER_BILLS#
12.2.2
-
APPS.EAM_CAP_MAIN_COST_PVT SQL Statements
12.1.1
-
View: OKL_KLE_STRM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_KLE_STRM_V, object_name:OKL_KLE_STRM_V, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_KLE_STRM_V ,
-
VIEW: APPS.OKL_KLE_STRM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_KLE_STRM_V, object_name:OKL_KLE_STRM_V, status:VALID,
-
View: OKL_KLE_STRM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_KLE_STRM_V, object_name:OKL_KLE_STRM_V, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_KLE_STRM_V ,
-
APPS.AP_WEB_DB_CCARD_PKG SQL Statements
12.2.2
-
APPS.EAM_CAP_MAIN_COST_PVT SQL Statements
12.2.2
-
VIEW: APPS.OKL_KLE_STRM_V
12.1.1
-
VIEW: APPS.GMS_STATUS_ACTUALS_BASE2_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_ACTUALS_BASE2_V, object_name:GMS_STATUS_ACTUALS_BASE2_V, status:VALID,
-
VIEW: APPS.OKL_KLE_STRM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_KLE_STRM_V, object_name:OKL_KLE_STRM_V, status:VALID,
-
APPS.AP_WEB_DB_CCARD_PKG SQL Statements
12.1.1
-
VIEW: APPS.OKL_KLE_STRM_V
12.2.2
-
VIEW: APPS.GMS_STATUS_ACTUALS_BASE1_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_ACTUALS_BASE1_V, object_name:GMS_STATUS_ACTUALS_BASE1_V, status:VALID,
-
VIEW: APPS.GMS_STATUS_ACTUALS_BASE1_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_ACTUALS_BASE1_V, object_name:GMS_STATUS_ACTUALS_BASE1_V, status:VALID,
-
VIEW: APPS.GMS_STATUS_ACTUALS_BASE2_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_ACTUALS_BASE2_V, object_name:GMS_STATUS_ACTUALS_BASE2_V, status:VALID,
-
TABLE: OKS.OKS_INSTANCE_K_DTLS_TEMP
12.1.1
owner:OKS, object_type:TABLE, fnd_design_data:OKS.OKS_INSTANCE_K_DTLS_TEMP, object_name:OKS_INSTANCE_K_DTLS_TEMP, status:VALID,
-
VIEW: AP.AP_CC_TRX_DETAILS_ARC#
12.2.2
owner:AP, object_type:VIEW, object_name:AP_CC_TRX_DETAILS_ARC#, status:VALID,
-
APPS.FII_AR_BILL_ACT_PKG SQL Statements
12.1.1
-
TABLE: OKS.OKS_INSTANCE_K_DTLS_TEMP
12.2.2
owner:OKS, object_type:TABLE, fnd_design_data:OKS.OKS_INSTANCE_K_DTLS_TEMP, object_name:OKS_INSTANCE_K_DTLS_TEMP, status:VALID,
-
VIEW: AP.AP_CC_TRX_DETAILS#
12.2.2
owner:AP, object_type:VIEW, object_name:AP_CC_TRX_DETAILS#, status:VALID,
-
VIEW: AP.AP_CREDIT_CARD_TRXNS_ARC#
12.2.2
-
VIEW: APPS.GMS_STATUS_ACTUALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_ACTUALS_V, object_name:GMS_STATUS_ACTUALS_V, status:VALID,
-
VIEW: APPS.GMS_STATUS_ACTUALS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_ACTUALS_V, object_name:GMS_STATUS_ACTUALS_V, status:VALID,
-
VIEW: EAM.EAM_WORK_ORDER_BILLS#
12.2.2
owner:EAM, object_type:VIEW, object_name:EAM_WORK_ORDER_BILLS#, status:VALID,
-
TABLE: AP.AP_CC_TRX_DETAILS_ARC
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_CC_TRX_DETAILS_ARC, object_name:AP_CC_TRX_DETAILS_ARC, status:VALID,
-
View: GMS_STATUS_ACTUALS_BASE2_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_ACTUALS_BASE2_V, object_name:GMS_STATUS_ACTUALS_BASE2_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_STATUS_ACTUALS_BASE2_V ,
-
APPS.OKS_MISC_UTIL_WEB SQL Statements
12.2.2
-
VIEW: AP.AP_CREDIT_CARD_TRXNS_ALL#
12.2.2
-
VIEW: APPS.FII_AR_NET_REC_BASE_MV_F_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AR_NET_REC_BASE_MV_F_V, object_name:FII_AR_NET_REC_BASE_MV_F_V, status:VALID,
-
VIEW: APPS.FII_AR_NET_REC_BASE_MV_S_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AR_NET_REC_BASE_MV_S_V, object_name:FII_AR_NET_REC_BASE_MV_S_V, status:VALID,
-
View: GMS_STATUS_ACTUALS_BASE2_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_ACTUALS_BASE2_V, object_name:GMS_STATUS_ACTUALS_BASE2_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_STATUS_ACTUALS_BASE2_V ,
-
APPS.OKS_MISC_UTIL_WEB SQL Statements
12.1.1
-
VIEW: APPS.FII_AR_NET_REC_AGRT_MV_P_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AR_NET_REC_AGRT_MV_P_V, object_name:FII_AR_NET_REC_AGRT_MV_P_V, status:VALID,
-
VIEW: APPS.FII_AR_NET_REC_AGRT_MV_S_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AR_NET_REC_AGRT_MV_S_V, object_name:FII_AR_NET_REC_AGRT_MV_S_V, status:VALID,
-
VIEW: APPS.FII_AR_NET_REC_BASE_MV_P_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AR_NET_REC_BASE_MV_P_V, object_name:FII_AR_NET_REC_BASE_MV_P_V, status:VALID,
-
TABLE: AP.AP_CC_TRX_DETAILS
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_CC_TRX_DETAILS, object_name:AP_CC_TRX_DETAILS, status:VALID,
-
VIEW: APPS.POBV_PLAN_PO_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_PLAN_PO_DISTRIBUTIONS, object_name:POBV_PLAN_PO_DISTRIBUTIONS, status:VALID,
-
VIEW: APPS.FII_AR_NET_REC_AGRT_MV_F_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_AR_NET_REC_AGRT_MV_F_V, object_name:FII_AR_NET_REC_AGRT_MV_F_V, status:VALID,
-
APPS.FV_AP_PREPAY_PKG SQL Statements
12.1.1
-
VIEW: APPS.POBV_SCHEDULED_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_SCHEDULED_DISTRIBUTIONS, object_name:POBV_SCHEDULED_DISTRIBUTIONS, status:VALID,
-
VIEW: APPS.POBV_PLAN_PO_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_PLAN_PO_DISTRIBUTIONS, object_name:POBV_PLAN_PO_DISTRIBUTIONS, status:VALID,
-
TABLE: AP.AP_CC_TRX_DETAILS
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_CC_TRX_DETAILS, object_name:AP_CC_TRX_DETAILS, status:VALID,
-
APPS.FV_AP_PREPAY_PKG SQL Statements
12.2.2
-
VIEW: APPS.POBV_BKT_PO_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_BKT_PO_DISTRIBUTIONS, object_name:POBV_BKT_PO_DISTRIBUTIONS, status:VALID,