Search Results pa_utils2
Overview
PA_CDL_BURDEN_DETAIL_V_R is a user-customizable reporting view in the Oracle E-Business Suite Projects (PA) module. It exposes the summarization criteria used for burden summarization of expenditure items, providing the dimensional and descriptive attributes that drive how raw expenditure costs are aggregated and burdened during the cost distribution and burdening process.
The view is defined over the base view PA_CDL_BURDEN_DETAIL_V, which itself is a denormalized projection of cost distribution lines joined to expenditure items, compiled multipliers, and organization information. The "_R" suffix indicates that this is the customizable, "regular" variant — a copy that implementers may modify to add, remove, or rename columns without altering the seeded definition of the underlying view. This design pattern allows an installation to tailor the summarization grain (for example, adding descriptive flexfield attributes as grouping keys) while preserving upgrade-safe integrity of the standard object.
The view is typically consumed by the burden summarization concurrent programs and by diagnostic or reconciliation reports that examine how expenditure was grouped before burden cost was calculated and posted.
Underlying Base Objects
The view is documented as based on PA_CDL_BURDEN_DETAIL_V. In the SELECT text supplied in the metadata, the following physical objects are referenced:
- PA_CDL_BURDEN_DETAIL_V (aliased CDL) — the primary driving view of cost distribution lines.
- PA_EXPENDITURE_ITEMS_ALL (EI) — source expenditure item detail, supplying dates, attributes, and currency codes.
- A compiled multiplier source (CM) — providing IND_COST_CODE, COST_BASE, and COMPILED_MULTIPLIER.
- An organization/ind-compiled-set source (ICS) — supplying ORGANIZATION_ID.
- An expenditure type source (ICC) — supplying the ICC expenditure type.
- An employee/HR source (E) — supplying PERSON_TYPE.
- An indirect rate schedule revision source (IRSR) — supplying IND_RATE_SCH_REVISION_ID.
- PL/SQL API functions PA_UTILS2.GET_PA_PERIOD_NAME, PA_CURRENCY.ROUND_TRANS_CURRENCY_AMT1, and PA_UTILS2.GET_PA_PERIOD_NAME derived logic.
The ETRM metadata records no separately documented base tables for this view, and it is noted as not implemented in the reference database — implying the view may exist in some environments and not others depending on patch level or customization.
Key Columns
The most significant column for users searching on "get_pa_period_name" is PA_PERIOD_NAME. It is derived using a DECODE: when PREV_IND_COMPILED_SET_ID is null, the CDL PA_PERIOD_NAME is used directly; otherwise the view calls PA_UTILS2.GET_PA_PERIOD_NAME(EI.EXPENDITURE_ITEM_DATE, EI.ORG_ID), falling back to CDL.PA_PERIOD_NAME when the function returns null. This ensures the summarization period reflects the expenditure item date for re-summarized records.
- PROJECT_ID, TASK_ID, EXPENDITURE_ITEM_ID, LINE_NUM — key identifiers for grouping and traceability.
- ORGANIZATION_ID, IND_COST_CODE, COST_BASE, COMPILED_MULTIPLIER — the burden rate and provider dimensions.
- BURDEN_COST, DENOM_BURDENED_COST, ACCT_BURDENED_COST, PROJECT_BURDENED_COST — rounded burdened amounts by currency, computed as raw cost multiplied by COMPILED_MULTIPLIER.
- ATTRIBUTE1 through ATTRIBUTE10, ATTRIBUTE_CATEGORY — descriptive flexfield values usable as additional summarization keys.
- BURDEN_SUM_SOURCE_RUN_ID, BURDEN_SUM_REJECTION_CODE, REQUEST_ID — process audit and rejection tracking.
- PA_DATE, EXPENDITURE_ITEM_DATE, currency codes — date and currency context.
Common Use Cases and Queries
A frequent requirement is to determine the effective burden period for expenditure items, particularly when items have been re-summarized or adjusted. The following query shows the derived period alongside the expenditure item date:
- SELECT project_id, task_id, expenditure_item_id, expenditure_item_date, pa_period_name, burden_cost FROM pa_cdl_burden_detail_v_r WHERE project_id = :project_id ORDER BY expenditure_item_date;
- Reconciliation of summarized burden by organization and cost base: SELECT organization_id, ind_cost_code, cost_base, SUM(burden_cost) FROM pa_cdl_burden_detail_v_r GROUP BY organization_id, ind_cost_code, cost_base;
- Customization extension: because this view is user-customizable, an implementer may add organization or DFF columns to meet local summarization requirements without modifying PA_CDL_BURDEN_DETAIL_V.
Because the period derivation depends on PA_UTILS2.GET_PA_PERIOD_NAME and the PREV_IND_COMPILED_SET_ID flag, any analysis of PA_PERIOD_NAME should account for whether the row originates from a prior compiled set, as this changes whether the item date or the stored period name governs.
-
View: PA_CDL_BURDEN_DETAIL_V_R
12.1.1
product: PA - Projects , description: Summarization criteria for burden summarization of expenditure items.This view is based on PA_CDL_BURDEN_DETAIL_V. It is a User customizable view defined over the PA_CDL_BURDEN_DETAIL_V. User can change the columns to be included in summary , implementation_dba_data: Not implemented in this database ,
-
View: PA_CDL_BURDEN_DETAIL_V_R
12.2.2
product: PA - Projects , description: Summarization criteria for burden summarization of expenditure items.This view is based on PA_CDL_BURDEN_DETAIL_V. It is a User customizable view defined over the PA_CDL_BURDEN_DETAIL_V. User can change the columns to be included in summary , implementation_dba_data: Not implemented in this database ,
-
View: PA_AP_INV_EXCEPTIONS_SUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_AP_INV_EXCEPTIONS_SUM_V, object_name:PA_AP_INV_EXCEPTIONS_SUM_V, status:VALID, product: PA - Projects , description: PA_AP_INV_EXCEPTIONS_SUM_V is a view that identifies the Payables invoices that prevent a period from being closed. , implementation_dba_data: APPS.PA_AP_INV_EXCEPTIONS_SUM_V ,
-
View: PA_CDL_BURDEN_DETAIL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IPA.PA_CDL_BURDEN_DETAIL_V PA.PA_CDL_BURDEN_DETAIL_V, object_name:PA_CDL_BURDEN_DETAIL_V, status:VALID, product: PA - Projects , description: Summarization criteria for burden summarization of expenditure items.This view is based on PA_CDL_BURDEN_DETAIL_V. It is a User customizable view defined over the PA_CDL_BURDEN_DETAIL_V. User can change the columns to be included in summary , implementation_dba_data: APPS.PA_CDL_BURDEN_DETAIL_V ,
-
View: PA_AP_INV_EXCEPTIONS_SUM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_AP_INV_EXCEPTIONS_SUM_V, object_name:PA_AP_INV_EXCEPTIONS_SUM_V, status:VALID, product: PA - Projects , description: PA_AP_INV_EXCEPTIONS_SUM_V is a view that identifies the Payables invoices that prevent a period from being closed. , implementation_dba_data: APPS.PA_AP_INV_EXCEPTIONS_SUM_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 ,