Search Results revtrans_amount
Overview
PA_DRAFT_REVENUE_ITEMS is a transaction table within the Oracle Projects (PA) module of Oracle E-Business Suite, holding the individual revenue lines that make up a draft revenue record. It exists in both release 12.1.1 and 12.2.2 under the PA schema and is classified as VALID in the ETRM repository. A draft revenue run creates header records in PA_DRAFT_REVENUES_ALL and detail lines in PA_DRAFT_REVENUE_ITEMS; the items table therefore represents the granular, line-level revenue distribution used before revenue is finalized and transferred to the general ledger.
From a dimensional modeling perspective, the mined foreign key structure suggests a satellite-leaning classification. The table is keyed dependently on a parent revenue document and carries the descriptive and financial attributes of each line, rather than standing alone as a hub or acting purely as an associative link.
Key Information Stored
The table contains 25 documented columns. The composite primary key, enforced by PA_DRAFT_REVENUE_ITEMS_PK, consists of PROJECT_ID, DRAFT_REVENUE_NUM, and LINE_NUM, with the unique index PA_DRAFT_REVENUE_ITEMS_U1 mirroring the same three-column business key. The most significant columns include:
- PROJECT_ID – identifies the project to which the draft revenue line belongs.
- DRAFT_REVENUE_NUM – the draft revenue document number, pairing with PROJECT_ID to link to the parent in PA_DRAFT_REVENUES_ALL.
- LINE_NUM – the line sequence, completing the primary key.
- TASK_ID – the associated task, referencing PA_TASKS.
- AMOUNT – the revenue amount on the line.
- REVENUE_SOURCE and REVENUE_CATEGORY_CODE – describe how and under which category the revenue was recognized.
- REVPROC_CURRENCY_CODE, PROJFUNC_CURRENCY_CODE, PROJECT_CURRENCY_CODE, and FUNDING_CURRENCY_CODE – the four currency contexts, each validated against FND_CURRENCIES.
- PROJFUNC_REVENUE_AMOUNT, PROJECT_REVENUE_AMOUNT, and FUNDING_REVENUE_AMOUNT – the corresponding converted amounts.
- REVTRANS_AMOUNT and REVTRANS_CURRENCY_CODE – the amount and currency carried forward for revenue transfer processing.
- REQUEST_ID, PROGRAM_ID, PROGRAM_APPLICATION_ID, and PROGRAM_UPDATE_DATE – concurrency and audit columns showing the program that created the line.
Common Use Cases and Queries
Typical uses center on revenue reconciliation, validation before finalization, currency variance review, and reporting on revenue composition by task and category. A common pattern joins detail lines to the parent revenue header:
- Retrieving all lines for a project's draft revenue:
SELECT LINE_NUM, TASK_ID, AMOUNT, REVENUE_CATEGORY_CODE FROM PA.PA_DRAFT_REVENUE_ITEMS WHERE PROJECT_ID = :project_id AND DRAFT_REVENUE_NUM = :draft_revenue_num ORDER BY LINE_NUM; - Reconciling project-functional revenue against the entered amount:
SELECT PROJECT_ID, DRAFT_REVENUE_NUM, LINE_NUM, AMOUNT, PROJFUNC_REVENUE_AMOUNT FROM PA.PA_DRAFT_REVENUE_ITEMS WHERE AMOUNT <> PROJFUNC_REVENUE_AMOUNT; - Aggregating draft revenue by category:
SELECT REVENUE_CATEGORY_CODE, SUM(PROJFUNC_REVENUE_AMOUNT) FROM PA.PA_DRAFT_REVENUE_ITEMS GROUP BY REVENUE_CATEGORY_CODE; - Tracing audit lineage by request:
SELECT * FROM PA.PA_DRAFT_REVENUE_ITEMS WHERE REQUEST_ID = :request_id;
Because revenue runs regenerate draft lines, queries should be scoped to the current draft revenue number and not relied upon as historical fact until the revenue is finalized and interfaced.
Related Objects
The table sits between the draft revenue header and downstream customer event and distribution objects:
- PA_DRAFT_REVENUES_ALL – the parent header, joined on PROJECT_ID and DRAFT_REVENUE_NUM; items are meaningless without it.
- PA_TASKS – referenced through TASK_ID to resolve task detail.
- FND_CURRENCIES – referenced four times for the currency codes on each line.
- PA_CUST_EVENT_RDL_ALL – customer revenue distribution lines linked back via PROJECT_ID, DRAFT_REVENUE_NUM, and DRAFT_REVENUE_ITEM_LINE_NUM.
- PA_CUST_REV_DIST_LINES_ALL – revenue distribution lines keyed to the draft revenue item.
- PA_MC_CUST_EVENT_RDL_ALL and PA_MC_CUST_RDL_ALL – multi-currency counterparts carrying the same join columns.
Together these relationships make PA_DRAFT_REVENUE_ITEMS the detail anchor from which Oracle Projects derives customer event and revenue distribution records prior to final revenue recognition.
-
Table: PA_DRAFT_REVENUE_ITEMS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_DRAFT_REVENUE_ITEMS, object_name:PA_DRAFT_REVENUE_ITEMS, status:VALID, product: PA - Projects , description: Draft revenue lines , implementation_dba_data: PA.PA_DRAFT_REVENUE_ITEMS ,
-
Table: PA_DRAFT_REVENUE_ITEMS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_DRAFT_REVENUE_ITEMS, object_name:PA_DRAFT_REVENUE_ITEMS, status:VALID, product: PA - Projects , description: Draft revenue lines , implementation_dba_data: PA.PA_DRAFT_REVENUE_ITEMS ,
-
Table: PA_CUST_EVENT_RDL_ALL
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_CUST_EVENT_RDL_ALL, object_name:PA_CUST_EVENT_RDL_ALL, status:VALID, product: PA - Projects , description: Information about event revenue distribution , implementation_dba_data: PA.PA_CUST_EVENT_RDL_ALL ,
-
Table: PA_CUST_REV_DIST_LINES_ALL
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_CUST_REV_DIST_LINES_ALL, object_name:PA_CUST_REV_DIST_LINES_ALL, status:VALID, product: PA - Projects , description: Information about expenditure item revenue distribution , implementation_dba_data: PA.PA_CUST_REV_DIST_LINES_ALL ,
-
Table: PA_CUST_EVENT_RDL_ALL
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_CUST_EVENT_RDL_ALL, object_name:PA_CUST_EVENT_RDL_ALL, status:VALID, product: PA - Projects , description: Information about event revenue distribution , implementation_dba_data: PA.PA_CUST_EVENT_RDL_ALL ,
-
Table: PA_CUST_REV_DIST_LINES_ALL
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_CUST_REV_DIST_LINES_ALL, object_name:PA_CUST_REV_DIST_LINES_ALL, status:VALID, product: PA - Projects , description: Information about expenditure item revenue distribution , implementation_dba_data: PA.PA_CUST_REV_DIST_LINES_ALL ,
-
View: PA_CUST_EVENT_REV_DIST_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CUST_EVENT_REV_DIST_LINES_V, object_name:PA_CUST_EVENT_REV_DIST_LINES_V, status:VALID, product: PA - Projects , description: Single-Org , implementation_dba_data: APPS.PA_CUST_EVENT_REV_DIST_LINES_V ,
-
View: PA_CUST_EVENT_REV_DIST_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CUST_EVENT_REV_DIST_LINES_V, object_name:PA_CUST_EVENT_REV_DIST_LINES_V, status:VALID, product: PA - Projects , description: Single-Org , implementation_dba_data: APPS.PA_CUST_EVENT_REV_DIST_LINES_V ,
-
View: PA_DRAFT_REVENUE_ITEMS_MRC_V
12.2.2
product: PA - Projects , description: Single currency MRC view , implementation_dba_data: Not implemented in this database ,
-
View: PA_DRAFT_REVENUE_ITEMS_MRC_V
12.1.1
product: PA - Projects , description: Single currency MRC view , implementation_dba_data: Not implemented in this database ,
-
View: PA_DRAFT_REVENUE_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DRAFT_REVENUE_ITEMS_V, object_name:PA_DRAFT_REVENUE_ITEMS_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_DRAFT_REVENUE_ITEMS_V ,
-
View: PA_DRAFT_REV_ITEMS_FORM_MRC_V
12.1.1
product: PA - Projects , description: This will select data from pa_draft_revenue_items, pa_cust_event_rev_dist_lines , implementation_dba_data: Not implemented in this database ,
-
View: PA_DRAFT_REVENUE_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DRAFT_REVENUE_ITEMS_V, object_name:PA_DRAFT_REVENUE_ITEMS_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_DRAFT_REVENUE_ITEMS_V ,
-
View: PA_CUST_EVENT_RDL_ALL_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CUST_EVENT_RDL_ALL_MRC_V, object_name:PA_CUST_EVENT_RDL_ALL_MRC_V, status:VALID, product: PA - Projects , description: Multi-org, single currency MRC view , implementation_dba_data: APPS.PA_CUST_EVENT_RDL_ALL_MRC_V ,
-
View: PA_DRAFT_REV_ITEMS_FORM_MRC_V
12.2.2
product: PA - Projects , description: This will select data from pa_draft_revenue_items, pa_cust_event_rev_dist_lines , implementation_dba_data: Not implemented in this database ,
-
View: PA_CUST_EVENT_RDL_MRC_V
12.1.1
product: PA - Projects , description: Single-org, single currency view , implementation_dba_data: Not implemented in this database ,
-
View: PA_CUST_EVENT_RDL_MRC_V
12.2.2
product: PA - Projects , description: Single-org, single currency view , implementation_dba_data: Not implemented in this database ,
-
View: PA_CUST_RDL_MRC_V
12.2.2
product: PA - Projects , description: Single-org, single currency MRC view , implementation_dba_data: Not implemented in this database ,
-
View: PA_CUST_EVENT_RDL_ALL_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CUST_EVENT_RDL_ALL_MRC_V, object_name:PA_CUST_EVENT_RDL_ALL_MRC_V, status:VALID, product: PA - Projects , description: Multi-org, single currency MRC view , implementation_dba_data: APPS.PA_CUST_EVENT_RDL_ALL_MRC_V ,
-
View: PA_XLA_REV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_XLA_REV_V, object_name:PA_XLA_REV_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_XLA_REV_V ,
-
View: PA_CUST_RDL_MRC_V
12.1.1
product: PA - Projects , description: Single-org, single currency MRC view , implementation_dba_data: Not implemented in this database ,
-
View: PA_CUST_EVENT_RDL_FORMS_MRC_V
12.2.2
product: PA - Projects , description: Single-Org , implementation_dba_data: Not implemented in this database ,
-
View: PA_CUST_EVENT_RDL_FORMS_MRC_V
12.1.1
product: PA - Projects , description: Single-Org , implementation_dba_data: Not implemented in this database ,
-
View: PA_XLA_REV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_XLA_REV_V, object_name:PA_XLA_REV_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_XLA_REV_V ,
-
View: PA_CUST_REV_DIST_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CUST_REV_DIST_LINES_V, object_name:PA_CUST_REV_DIST_LINES_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_CUST_REV_DIST_LINES_V ,
-
View: PA_CUST_RDL_ALL_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CUST_RDL_ALL_MRC_V, object_name:PA_CUST_RDL_ALL_MRC_V, status:VALID, product: PA - Projects , description: Multi-org, single currency view , implementation_dba_data: APPS.PA_CUST_RDL_ALL_MRC_V ,
-
View: PA_CUST_RDL_ALL_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CUST_RDL_ALL_MRC_V, object_name:PA_CUST_RDL_ALL_MRC_V, status:VALID, product: PA - Projects , description: Multi-org, single currency view , implementation_dba_data: APPS.PA_CUST_RDL_ALL_MRC_V ,
-
View: PA_CUST_REV_DIST_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CUST_REV_DIST_LINES_V, object_name:PA_CUST_REV_DIST_LINES_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_CUST_REV_DIST_LINES_V ,
-
View: PA_CUST_RDL_FORM_MRC_V
12.2.2
product: PA - Projects , description: This will select data from pa_cust_rev_dist_lines, pa_mc_cust_rdl_all, pa_expend_items_adjust_mrc_v , implementation_dba_data: Not implemented in this database ,
-
View: PA_DRAFT_REVENUES_FORM_MRC_V
12.2.2
product: PA - Projects , description: This will select data from pa_draft_revenues, pa_mc_draft_revs_all, pa_draft_revenue_items, pa_agreements_all , implementation_dba_data: Not implemented in this database ,
-
View: PA_CUST_RDL_FORM_MRC_V
12.1.1
product: PA - Projects , description: This will select data from pa_cust_rev_dist_lines, pa_mc_cust_rdl_all, pa_expend_items_adjust_mrc_v , implementation_dba_data: Not implemented in this database ,
-
View: PA_DRAFT_REVENUES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DRAFT_REVENUES_V, object_name:PA_DRAFT_REVENUES_V, status:VALID, product: PA - Projects , description: This View has been modified to Include Reporting Project Functional columns whose values will be defaulted to NULL values , implementation_dba_data: APPS.PA_DRAFT_REVENUES_V ,
-
View: PA_DRAFT_REVENUES_FORM_MRC_V
12.1.1
product: PA - Projects , description: This will select data from pa_draft_revenues, pa_mc_draft_revs_all, pa_draft_revenue_items, pa_agreements_all , implementation_dba_data: Not implemented in this database ,
-
View: PA_DRAFT_REVENUES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DRAFT_REVENUES_V, object_name:PA_DRAFT_REVENUES_V, status:VALID, product: PA - Projects , description: This View has been modified to Include Reporting Project Functional columns whose values will be defaulted to NULL values , implementation_dba_data: APPS.PA_DRAFT_REVENUES_V ,