Search Results revenue_category_code
Overview
PA_REVENUE_CATEGORIES_RES_V is an Oracle EBS Projects (PA) view owned by the APPS schema. It is documented in the ETRM repository with the description "10Sc only," indicating that its functional scope is limited to the revenue category resolution logic associated with labor-tracked resource treatment. Despite its origins, the object remains VALID in the ETRM 12.2.2 reference and is still resolvable within an Oracle EBS 12.1.1 / 12.2.2 environment.
The view presents a normalized list of revenue categories, one row per category, and augments each row with flags that describe whether the category is treated as a labor resource and whether quantities should be rolled up. Because the project accounting module drives revenue generation, billing, and cost-to-revenue mapping, applications and interfaces that require a certified list of valid revenue categories—along with their labor behavior—can consume this view rather than re-implementing the join and date-filter logic themselves.
In practice, the view primarily serves reporting, validation (LOV) queries, and integration extracts where a caller needs to know whether a given revenue_category_code behaves as labor. It is a resolution view rather than a transactional one; it does not store revenue or billing amounts.
Underlying Base Objects
The view is defined over three documented objects:
- PA_REVENUE_CATEGORIES_V (VIEW) – the source of valid revenue category rows and their active date ranges. Columns referenced include
REVENUE_CATEGORY_CODE,REVENUE_CATEGORY_M,START_DATE_ACTIVE, andEND_DATE_ACTIVE. - PA_EXPENDITURE_TYPES_RES_V (VIEW) – used in a correlated
NOT EXISTS/EXISTSsubquery to test whether a revenue category is linked to an expenditure type withTRACK_AS_LABOR_FLAG = 'Y'. - PA_GET_RESOURCE (PACKAGE) – supplies the
INCLUDE_INACTIVE_RESOURCESglobal, which governs whether inactive (date-expired) categories are returned.
The active-date logic is controlled by DECODE(PA_GET_RESOURCE.INCLUDE_INACTIVE_RESOURCES, 'Y', START_DATE_ACTIVE, TRUNC(SYSDATE)) nested between START_DATE_ACTIVE and NVL(END_DATE_ACTIVE, TRUNC(SYSDATE)). When the global is 'Y', the effective comparison date becomes the row's own start date, allowing expired categories to surface; otherwise the current system date is used and only currently active categories are returned.
The view body is a UNION ALL of two branches. The first returns non-labor categories with TRACK_AS_LABOR_FLAG = 'N', UNIT_OF_MEASURE = NULL, and ROLLUP_QUANTITY_FLAG = 'N'. The second returns labor categories with 'Y', unit of measure 'HOURS', and rollup flag 'Y'.
Key Columns
- REVENUE_CATEGORY_CODE – the unique business key of the revenue category. This is the column most commonly searched by users (e.g., searching "revenue_category_code") and is used to join to project, billing, and expenditure data.
- DESCRIPTION – derived from
REVENUE_CATEGORY_MinPA_REVENUE_CATEGORIES_V; the descriptive name of the category. - TRACK_AS_LABOR_FLAG –
'Y'when the category maps to a labor expense type;'N'otherwise. This flag directly determines the unit of measure and rollup behavior assigned in the same branch. - UNIT_OF_MEASURE –
'HOURS'for labor categories,NULLfor others. - ROLLUP_QUANTITY_FLAG –
'Y'for labor categories (quantities are rolled up, e.g., hours),'N'otherwise.
Common Use Cases and Queries
Typical uses include populating revenue category LOVs, validating user-supplied category codes before loading billing or revenue events, and extracting a labor/non-labor classification for downstream processing.
Retrieve all currently active revenue categories:
SELECT revenue_category_code,
description,
track_as_labor_flag,
unit_of_measure,
rollup_quantity_flag
FROM apps.pa_revenue_categories_res_v
ORDER BY revenue_category_code;
Isolate labor-tracked categories only:
SELECT revenue_category_code, description
FROM apps.pa_revenue_categories_res_v
WHERE track_as_labor_flag = 'Y';
Resolve a specific category code, which is the most frequent pattern given user searches on revenue_category_code:
SELECT revenue_category_code,
description,
track_as_labor_flag
FROM apps.pa_revenue_categories_res_v
WHERE revenue_category_code = :p_category_code;
Because the code relies on the PA_GET_RESOURCE package global, callers should not assume a fixed active-date scope; the returned row set changes depending on the session value of INCLUDE_INACTIVE_RESOURCES. For deterministic reporting, wrap the query with an explicit filter on track_as_labor_flag or supply the global value in the calling environment.
-
View: PA_REVENUE_CATEGORIES_RES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REVENUE_CATEGORIES_RES_V, object_name:PA_REVENUE_CATEGORIES_RES_V, status:VALID, product: PA - Projects , description: 10Sc only , implementation_dba_data: APPS.PA_REVENUE_CATEGORIES_RES_V ,
-
View: PA_REVENUE_CATEGORIES_RES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REVENUE_CATEGORIES_RES_V, object_name:PA_REVENUE_CATEGORIES_RES_V, status:VALID, product: PA - Projects , description: 10Sc only , implementation_dba_data: APPS.PA_REVENUE_CATEGORIES_RES_V ,
-
View: PA_ADW_EXP_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ADW_EXP_TYPES_V, object_name:PA_ADW_EXP_TYPES_V, status:VALID, product: PA - Projects , description: Values for expenditure types on the expenditure type dimension , implementation_dba_data: APPS.PA_ADW_EXP_TYPES_V ,
-
View: PA_ADW_EXP_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ADW_EXP_TYPES_V, object_name:PA_ADW_EXP_TYPES_V, status:VALID, product: PA - Projects , description: Values for expenditure types on the expenditure type dimension , implementation_dba_data: APPS.PA_ADW_EXP_TYPES_V ,
-
View: PA_EVENT_TYPES_RES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EVENT_TYPES_RES_V, object_name:PA_EVENT_TYPES_RES_V, status:VALID, product: PA - Projects , description: 10Sc Only , implementation_dba_data: APPS.PA_EVENT_TYPES_RES_V ,
-
View: PA_EVENT_TYPES_RES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EVENT_TYPES_RES_V, object_name:PA_EVENT_TYPES_RES_V, status:VALID, product: PA - Projects , description: 10Sc Only , implementation_dba_data: APPS.PA_EVENT_TYPES_RES_V ,
-
View: PA_CMT_BURDEN_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CMT_BURDEN_SUMMARY_V, object_name:PA_CMT_BURDEN_SUMMARY_V, status:VALID, product: PA - Projects , description: This user customizable view defines the summarization criteria for burden summarization of commitment transactions. , implementation_dba_data: APPS.PA_CMT_BURDEN_SUMMARY_V ,
-
View: PA_CMT_BURDEN_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CMT_BURDEN_SUMMARY_V, object_name:PA_CMT_BURDEN_SUMMARY_V, status:VALID, product: PA - Projects , description: This user customizable view defines the summarization criteria for burden summarization of commitment transactions. , implementation_dba_data: APPS.PA_CMT_BURDEN_SUMMARY_V ,
-
View: PA_REVENUE_CATEGORIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REVENUE_CATEGORIES_V, object_name:PA_REVENUE_CATEGORIES_V, status:VALID, product: PA - Projects , description: 10Sc only , implementation_dba_data: APPS.PA_REVENUE_CATEGORIES_V ,
-
View: PABV_EVENT_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_EVENT_TYPES, object_name:PABV_EVENT_TYPES, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PABV_EVENT_TYPES ,
-
View: PA_REVENUE_CATEGORIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_REVENUE_CATEGORIES_V, object_name:PA_REVENUE_CATEGORIES_V, status:VALID, product: PA - Projects , description: 10Sc only , implementation_dba_data: APPS.PA_REVENUE_CATEGORIES_V ,
-
View: PABV_EVENT_TYPES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_EVENT_TYPES, object_name:PABV_EVENT_TYPES, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PABV_EVENT_TYPES ,
-
View: PA_XLA_EXP_TYPE_REF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_XLA_EXP_TYPE_REF_V, object_name:PA_XLA_EXP_TYPE_REF_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_XLA_EXP_TYPE_REF_V ,
-
View: PA_XLA_EXP_TYPE_REF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_XLA_EXP_TYPE_REF_V, object_name:PA_XLA_EXP_TYPE_REF_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_XLA_EXP_TYPE_REF_V ,
-
View: PAFV_EVENT_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PAFV_EVENT_TYPES, object_name:PAFV_EVENT_TYPES, status:VALID, product: PA - Projects , description: Business view to show information about the event types possible. , implementation_dba_data: APPS.PAFV_EVENT_TYPES ,
-
View: PA_EXPENDITURE_TYPES_RES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EXPENDITURE_TYPES_RES_V, object_name:PA_EXPENDITURE_TYPES_RES_V, status:VALID, product: PA - Projects , description: 10Sc Only , implementation_dba_data: APPS.PA_EXPENDITURE_TYPES_RES_V ,
-
View: PA_EXPENDITURE_TYPES_RES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EXPENDITURE_TYPES_RES_V, object_name:PA_EXPENDITURE_TYPES_RES_V, status:VALID, product: PA - Projects , description: 10Sc Only , implementation_dba_data: APPS.PA_EXPENDITURE_TYPES_RES_V ,
-
View: PAFV_EVENT_TYPES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PAFV_EVENT_TYPES, object_name:PAFV_EVENT_TYPES, status:VALID, product: PA - Projects , description: Business view to show information about the event types possible. , implementation_dba_data: APPS.PAFV_EVENT_TYPES ,
-
View: PA_EVENT_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EVENT_TYPES_V, object_name:PA_EVENT_TYPES_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_EVENT_TYPES_V ,
-
View: PA_ADW_EXP_TYPES_B_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ADW_EXP_TYPES_B_V, object_name:PA_ADW_EXP_TYPES_B_V, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PA_ADW_EXP_TYPES_B_V ,
-
View: PA_ADW_EXP_TYPES_B_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ADW_EXP_TYPES_B_V, object_name:PA_ADW_EXP_TYPES_B_V, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PA_ADW_EXP_TYPES_B_V ,
-
View: PA_EVENT_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EVENT_TYPES_V, object_name:PA_EVENT_TYPES_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_EVENT_TYPES_V ,
-
View: PA_EXPENDITURE_TYPES_DESC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EXPENDITURE_TYPES_DESC_V, object_name:PA_EXPENDITURE_TYPES_DESC_V, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PA_EXPENDITURE_TYPES_DESC_V ,
-
View: PA_RETN_INVOICE_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RETN_INVOICE_DETAILS_V, object_name:PA_RETN_INVOICE_DETAILS_V, status:VALID, product: PA - Projects , description: 11i Retention View , implementation_dba_data: APPS.PA_RETN_INVOICE_DETAILS_V ,
-
View: PA_RETN_INVOICE_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RETN_INVOICE_DETAILS_V, object_name:PA_RETN_INVOICE_DETAILS_V, status:VALID, product: PA - Projects , description: 11i Retention View , implementation_dba_data: APPS.PA_RETN_INVOICE_DETAILS_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_EXPENDITURE_TYPES_DESC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EXPENDITURE_TYPES_DESC_V, object_name:PA_EXPENDITURE_TYPES_DESC_V, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PA_EXPENDITURE_TYPES_DESC_V ,
-
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.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_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.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_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_PROJ_RETN_EVENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_RETN_EVENTS_V, object_name:PA_PROJ_RETN_EVENTS_V, status:VALID, product: PA - Projects , description: Stores retention events rules , implementation_dba_data: APPS.PA_PROJ_RETN_EVENTS_V ,
-
View: PA_PROJ_RETN_EVENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_RETN_EVENTS_V, object_name:PA_PROJ_RETN_EVENTS_V, status:VALID, product: PA - Projects , description: Stores retention events rules , implementation_dba_data: APPS.PA_PROJ_RETN_EVENTS_V ,
-
View: PA_STATUS_EI_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_EI_V, object_name:PA_STATUS_EI_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_STATUS_EI_V ,
-
View: PA_STATUS_EI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_EI_V, object_name:PA_STATUS_EI_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_STATUS_EI_V ,
-
View: PA_CMT_BURDEN_DETAIL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CMT_BURDEN_DETAIL_V, object_name:PA_CMT_BURDEN_DETAIL_V, status:VALID, product: PA - Projects , description: This view displays the indirect cost components of all the non-summarized Commitment transactions of a project using the proper indirect rate schedules and revisions. , implementation_dba_data: APPS.PA_CMT_BURDEN_DETAIL_V ,
-
View: PA_CMT_BURDEN_DETAIL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CMT_BURDEN_DETAIL_V, object_name:PA_CMT_BURDEN_DETAIL_V, status:VALID, product: PA - Projects , description: This view displays the indirect cost components of all the non-summarized Commitment transactions of a project using the proper indirect rate schedules and revisions. , implementation_dba_data: APPS.PA_CMT_BURDEN_DETAIL_V ,
-
View: PA_EXPEND_ITEMS_ADJUST2_MRC_V
12.2.2
product: PA - Projects , implementation_dba_data: Not implemented in this database ,
-
View: PA_EXPENDITURE_ITEMS_ONLINE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EXPENDITURE_ITEMS_ONLINE_V, object_name:PA_EXPENDITURE_ITEMS_ONLINE_V, status:VALID, product: PA - Projects , description: This view shows all expenditure items , implementation_dba_data: APPS.PA_EXPENDITURE_ITEMS_ONLINE_V ,
-
View: PA_EXPEND_ITEMS_ADJUST2_MRC_V
12.1.1
product: PA - Projects , implementation_dba_data: Not implemented in this database ,
-
View: PA_EXPEND_ITEMS_ADJUST2_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EXPEND_ITEMS_ADJUST2_V, object_name:PA_EXPEND_ITEMS_ADJUST2_V, status:VALID, product: PA - Projects , description: 11i Only , implementation_dba_data: APPS.PA_EXPEND_ITEMS_ADJUST2_V ,
-
View: PA_EXPEND_ITEMS_ADJUST2_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EXPEND_ITEMS_ADJUST2_V, object_name:PA_EXPEND_ITEMS_ADJUST2_V, status:VALID, product: PA - Projects , description: 11i Only , implementation_dba_data: APPS.PA_EXPEND_ITEMS_ADJUST2_V ,
-
View: PA_STATUS_EI_DRIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_EI_DRIVE_V, object_name:PA_STATUS_EI_DRIVE_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_STATUS_EI_DRIVE_V ,
-
View: PA_STATUS_EI_DRIVE_V_R
12.2.2
product: PA - Projects , implementation_dba_data: Not implemented in this database ,
-
View: PA_STATUS_EI_DRIVE_V_R
12.1.1
product: PA - Projects , implementation_dba_data: Not implemented in this database ,
-
View: PA_STATUS_EI_DRIVE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_EI_DRIVE_V, object_name:PA_STATUS_EI_DRIVE_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_STATUS_EI_DRIVE_V ,
-
View: PA_TASK_ASSIGNMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_ASSIGNMENTS_V, object_name:PA_TASK_ASSIGNMENTS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASK_ASSIGNMENTS_V ,
-
View: PA_TASK_ASSIGNMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_ASSIGNMENTS_V, object_name:PA_TASK_ASSIGNMENTS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASK_ASSIGNMENTS_V ,
-
View: PA_EXPEND_ITEMS_ADJUST_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EXPEND_ITEMS_ADJUST_ALL_V, object_name:PA_EXPEND_ITEMS_ADJUST_ALL_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_EXPEND_ITEMS_ADJUST_ALL_V ,