Search Results ubr_amount
Overview
PA_UBR_UER_PROJ_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the Projects (PA) product family. Its purpose is to present a consolidated project-level summary of Unbilled Receivable (UBR) and Unearned Revenue (UER) balances. The view is not used by core transaction processing; rather, it exists specifically to support UBR and UER reporting, providing a denormalized, query-ready result set that joins project attributes, project type, GL period information, and summarized UBR/UER account balances from the underlying summary accounting table.
The view is valid in both 12.1.1 and 12.2.2 and behaves identically in either release, since it is a pure SQL definition layered over standard PA and GL objects. Users searching for the term "ubr_amount" will typically land on this view because UBR_AMOUNT is one of its principal derived columns, computed as the sum of the prior-period UBR debit balance and the current unbilled receivable debit amount, rounded through the PA_CURRENCY rounding API.
Underlying Base Objects
The view is defined over a small set of documented base objects:
- PA_UBR_UER_SUMM_ACCT (synonym) — the central summary accounting table holding UBR and UER balances by project, cost center, account, and GL period.
- PA_PROJECTS (synonym) — supplies PROJECT_NUMBER, PROJECT_NAME, PROJECT_ID, and PROJECT_TYPE.
- PA_PROJECT_TYPES_ALL (synonym) — joined to resolve the project type classification and to enforce ORG_ID consistency with the project.
- GL_PERIOD_STATUSES (synonym) — restricted to APPLICATION_ID = 101 (Projects) and joined on SET_OF_BOOKS_ID to provide the GL period name and start date.
- PA_IMPLEMENTATIONS_ALL (synonym) — drives SET_OF_BOOKS_ID and ORG_ID for the operating unit and ledger context.
- PA_CURRENCY (package) — invoked as PA_CURRENCY.ROUND_CURRENCY_AMT for currency rounding of the derived UBR_AMOUNT and UER_AMOUNT values.
A correlated NOT EXISTS subquery on PA_UBR_UER_SUMM_ACCT ensures that, for each project/cost center/account combination, only the latest summary row whose GL_PERIOD_START_DATE is less than or equal to the GL period start date is returned, preventing duplicate or overlapping period rows.
Key Columns
- PROJECT_NUMBER, PROJECT_NAME, PROJECT_ID — project identification attributes sourced from PA_PROJECTS.
- PROJECT_TYPE — the project type from PA_PROJECT_TYPES_ALL.
- UBR_UER_SUMMARY_ID — primary key of the underlying summary accounting record.
- COST_CENTER, ACCOUNT — the cost center and account segments associated with the balance.
- GL_PERIOD_NAME, SU_GL_PERIOD_NAME — GL period name from GL_PERIOD_STATUSES and the summary record respectively.
- UBR_AMOUNT — rounded sum of UBR_BAL_PREV_PERIOD_DR and UNBILLED_RECEIVABLE_DR; the primary measure referenced by users searching "ubr_amount".
- UER_AMOUNT — rounded sum of UER_BAL_PREV_PERIOD_CR and UNEARNED_REVENUE_CR.
- ZERO_BALANCE_FLAG — indicates whether the summarized balance nets to zero.
- UBR_UER_CODE — classification code for the UBR/UER line.
- GL_PERIOD_START_DATE, SU_GL_PERIOD_START_DATE — period start dates for the GL and summary sides.
- PROCESS_FLAG, REQUEST_ID — execution status and concurrent request identifier of the process that generated the summary.
- MULTI_COST_CENTER_FLAG — flags records spanning multiple cost centers.
- SET_OF_BOOKS_ID, ORG_ID — ledger and operating unit context from PA_IMPLEMENTATIONS_ALL.
Common Use Cases and Queries
The view is typically queried by project accountants and reporting tools to reconcile unbilled receivables and unearned revenue by project and period. A basic balance listing is:
SELECT project_number, project_name, gl_period_name, cost_center, account, ubr_amount, uer_amount, zero_balance_flag FROM apps.pa_ubr_uer_proj_v WHERE org_id = :p_org_id AND gl_period_name = :p_period ORDER BY project_number;
To isolate projects carrying a non-zero unbilled receivable at a point in time:
SELECT project_number, project_name, SUM(ubr_amount) ubr_total FROM apps.pa_ubr_uer_proj_v WHERE set_of_books_id = :p_sob_id AND zero_balance_flag = 'N' GROUP BY project_number, project_name HAVING SUM(ubr_amount) <> 0;
Because SET_OF_BOOKS_ID and ORG_ID are exposed, queries should always be filtered by ledger or operating unit to avoid cross-organization results. Reporting is generally restricted to rows where PROCESS_FLAG and REQUEST_ID reflect the most recent successful summarization run, ensuring the reported UBR_AMOUNT and UER_AMOUNT align with the current period balance carried forward from the prior period.
-
View: PA_UBR_UER_PROJ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_UBR_UER_PROJ_V, object_name:PA_UBR_UER_PROJ_V, status:VALID, product: PA - Projects , description: This view is being used for reporting purpose in UBR and UER.This is UBR UER Project summary view , implementation_dba_data: APPS.PA_UBR_UER_PROJ_V ,
-
View: PA_UBR_UER_PROJ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_UBR_UER_PROJ_V, object_name:PA_UBR_UER_PROJ_V, status:VALID, product: PA - Projects , description: This view is being used for reporting purpose in UBR and UER.This is UBR UER Project summary view , implementation_dba_data: APPS.PA_UBR_UER_PROJ_V ,
-
VIEW: APPS.PA_UBR_UER_PROJ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_UBR_UER_PROJ_V, object_name:PA_UBR_UER_PROJ_V, status:VALID,
-
VIEW: APPS.PA_UBR_UER_PROJ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_UBR_UER_PROJ_V, object_name:PA_UBR_UER_PROJ_V, status:VALID,
-
VIEW: APPS.PA_UBR_UER_PROJ_DTLS_V
12.2.2
-
VIEW: APPS.PA_UBR_UER_PROJ_V
12.2.2
-
VIEW: APPS.PA_UBR_UER_PROJ_DTLS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_UBR_UER_PROJ_DTLS_V, object_name:PA_UBR_UER_PROJ_DTLS_V, status:VALID,
-
View: PA_UBR_UER_PROJ_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_UBR_UER_PROJ_DTLS_V, object_name:PA_UBR_UER_PROJ_DTLS_V, status:VALID, product: PA - Projects , description: This view is being used for reporting purpose in UBR and UER.This is UBR UER Project summary details view , implementation_dba_data: APPS.PA_UBR_UER_PROJ_DTLS_V ,
-
VIEW: APPS.PA_UBR_UER_PROJ_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_UBR_UER_PROJ_DTLS_V, object_name:PA_UBR_UER_PROJ_DTLS_V, status:VALID,
-
VIEW: APPS.PA_UBR_UER_PROJ_V
12.1.1
-
View: PA_UBR_UER_PROJ_DTLS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_UBR_UER_PROJ_DTLS_V, object_name:PA_UBR_UER_PROJ_DTLS_V, status:VALID, product: PA - Projects , description: This view is being used for reporting purpose in UBR and UER.This is UBR UER Project summary details view , implementation_dba_data: APPS.PA_UBR_UER_PROJ_DTLS_V ,
-
VIEW: APPS.PA_UBR_UER_PROJ_DTLS_V
12.1.1
-
APPS.PA_UBR_UER_SUMM_PKG SQL Statements
12.1.1
-
APPS.PA_UBR_UER_SUMM_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PA_UBR_UER_SUMM_PKG
12.2.2
-
PACKAGE BODY: APPS.PA_UBR_UER_SUMM_PKG
12.1.1
-
APPS.PA_UBR_UER_SUMM_PKG dependencies on PA_PROJECTS_ALL
12.1.1
-
APPS.PA_UBR_UER_SUMM_PKG dependencies on PA_PROJECTS_ALL
12.2.2
-
APPS.PA_UBR_UER_SUMM_PKG dependencies on PA_DRAFT_REVENUES_ALL
12.2.2
-
APPS.PA_UBR_UER_SUMM_PKG dependencies on PA_DRAFT_INVOICES_ALL
12.1.1
-
APPS.PA_UBR_UER_SUMM_PKG dependencies on PA_DRAFT_REVENUES_ALL
12.1.1
-
APPS.PA_UBR_UER_SUMM_PKG dependencies on PA_DRAFT_INVOICES_ALL
12.2.2
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.2.2