Search Results pa_po_burden
Overview
APPS.PA_XLA_BC_PKT_PO_DETAIL_V is a Subledger Accounting (XLA) supporting view belonging to the Projects (PA) application in Oracle E-Business Suite 12.1.1 and 12.2.2. It exposes purchase order and requisition distribution details associated with burden cost packets maintained in the Projects budgeting and encumbrance accounting flows, presenting them in a structure consumed by the XLA accounting engine when generating subledger journal entries. Because the view is owned by APPS and referenced by XLA packet-processing logic, it functions as an integration layer between Projects Funds Control, Purchasing distributions, and the SLA accounting model. The user search term "document_type" is central to this view: pbc.document_type is carried through much of the view's logic, driving the decode branches that distinguish purchase order ('PO') from requisition ('REQ') processing.
Underlying Base Objects
The documented base objects underlying this view are:
PA_BC_PACKETS(synonym) — the primary burden cost packet table, supplyingbc_packet_id,bc_event_id,document_type,main_or_backing_code, and related distribution columns.PA_FUNDS_CONTROL_UTILS(package) — supplies theDERIVE_PO_REQ_AMT_SIDEandGET_SLA_NOTUPGRADED_FLAGfunctions used to compute debit/credit direction and upgrade flags.PA_RESOURCE_LIST_MEMBERS(synonym) — referenced asPrlm, providing event type, expenditure/revenue category, person, and job attributes.GL_LEDGERS(synonym) — referenced asgll, supplying thecurrency_codefor the ledger.XLA_EVENTS_GT(synonym) — referenced asxev_source, supplying the sourceevent_type_codeused in amount-side derivation.PO_DOCUMENT_FUNDS_PVT(package) — referenced in the PO funds control logic underlying the view's distribution sourcing.
Key Columns
BC_EVENT_ID,BC_PACKET_ID,PACKET_ID,PARENT_BC_PACKET_ID— packet and event identifiers linking the row to Projects burden cost packets.DOCUMENT_TYPE— the pivotal discriminator ('PO' or 'REQ') that governs burden event naming and distribution sourcing (PO_DISTRIBUTIONS_ALLvsPO_REQ_DISTRIBUTIONS_ALL).DOCUMENT_DISTRIBUTION_ID,DOCUMENT_LINE_ID,DOCUMENT_HEADER_ID— Purchasing distribution/line/header keys.ACCOUNTED_DR,ACCOUNTED_CR,ENTERED_DR,ENTERED_CR— passed through decode logic driven byDERIVE_PO_REQ_AMT_SIDEto yield signed amounts.MAIN_OR_BACKING_CODE,BURDEN_COST_FLAG,ENCUMBRANCE_TYPE_ID,PROJ_ENCUMBRANCE_TYPE_ID— encumbrance and burden classification.CURRENCY_CODE,SET_OF_BOOKS_ID— ledger context.PROJECT_ID,TASK_ID,EXPENDITURE_ORGANIZATION_ID,EXPENDITURE_ITEM_DATE,BUDGET_CCID,BUDGET_VERSION_ID,BUDGET_LINE_ID— Projects budgeting and expenditure attributes.USE_ENC_UPG_ATTRIB_FLAG— flag fromGET_SLA_NOTUPGRADED_FLAGindicating SLA upgrade handling.EVENT_TYPE,EXPENDITURE_CATEGORY,REVENUE_CATEGORY,PERSON_ID,JOB_ID,VENDOR_ID— descriptive attributes from resource list members.
Common Use Cases and Queries
The view is principally used to diagnose and report on burden cost packets arising from purchase order and requisition encumbrance flows, and to trace amounts feeding XLA journal entries.
- Identifying all distribution rows for a given packet.
- Isolating requisition versus purchase order documents by
document_type. - Reconciling accounted versus entered amounts by side.
Sample query:
SELECT bc_packet_id, document_type, document_header_id,
DECODE(document_type,'PO','PO_DISTRIBUTIONS_ALL','PO_REQ_DISTRIBUTIONS_ALL') source,
accounted_dr, accounted_cr, entered_dr, entered_cr, currency_code
FROM apps.pa_xla_bc_pkt_po_detail_v
WHERE bc_packet_id = :p_packet_id;
A second common query filters by document_type to audit requisition-sourced burden packets for a project. Because the view embeds function calls, queries should bind on indexed columns such as BC_PACKET_ID or DOCUMENT_HEADER_ID where practical.
-
VIEW: APPS.PA_XLA_BC_PKT_PO_DETAIL_V
12.1.1
-
VIEW: APPS.PA_XLA_BC_PKT_PO_DETAIL_V
12.2.2
-
View: PA_XLA_BC_PKT_PO_DETAIL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_XLA_BC_PKT_PO_DETAIL_V, object_name:PA_XLA_BC_PKT_PO_DETAIL_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_XLA_BC_PKT_PO_DETAIL_V ,
-
View: PA_XLA_BC_PKT_PO_DETAIL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_XLA_BC_PKT_PO_DETAIL_V, object_name:PA_XLA_BC_PKT_PO_DETAIL_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_XLA_BC_PKT_PO_DETAIL_V ,
-
VIEW: APPS.PA_XLA_BC_PKT_AP_DETAIL_V
12.1.1
-
VIEW: APPS.PA_XLA_BC_PKT_AP_DETAIL_V
12.2.2
-
VIEW: APPS.PA_XLA_CDL_LINES_V
12.2.2
-
VIEW: APPS.PA_XLA_CDL_LINES_V
12.1.1
-
View: PA_XLA_CDL_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_XLA_CDL_LINES_V, object_name:PA_XLA_CDL_LINES_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_XLA_CDL_LINES_V ,
-
View: PA_XLA_CDL_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_XLA_CDL_LINES_V, object_name:PA_XLA_CDL_LINES_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_XLA_CDL_LINES_V ,
-
View: PA_XLA_BC_PKT_AP_DETAIL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_XLA_BC_PKT_AP_DETAIL_V, object_name:PA_XLA_BC_PKT_AP_DETAIL_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_XLA_BC_PKT_AP_DETAIL_V ,
-
View: PA_XLA_BC_PKT_AP_DETAIL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_XLA_BC_PKT_AP_DETAIL_V, object_name:PA_XLA_BC_PKT_AP_DETAIL_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_XLA_BC_PKT_AP_DETAIL_V ,
-
APPS.PA_FUNDS_CONTROL_PKG dependencies on PO_REQ_DISTRIBUTIONS_ALL
12.2.2
-
APPS.PA_FUNDS_CONTROL_PKG SQL Statements
12.2.2
-
APPS.PA_FUNDS_CONTROL_PKG SQL Statements
12.1.1
-
APPS.PA_FUNDS_CONTROL_PKG dependencies on PO_REQ_DISTRIBUTIONS_ALL
12.1.1
-
APPS.PA_FUNDS_CONTROL_PKG dependencies on PO_DISTRIBUTIONS_ALL
12.1.1
-
APPS.PA_FUNDS_CONTROL_PKG dependencies on PO_DISTRIBUTIONS_ALL
12.2.2
-
APPS.PA_FUNDS_CONTROL_PKG dependencies on DUAL
12.1.1
-
APPS.PA_FUNDS_CONTROL_PKG dependencies on DUAL
12.2.2
-
APPS.PA_FUNDS_CONTROL_PKG dependencies on GL_BC_PACKETS
12.2.2
-
PACKAGE BODY: APPS.PA_FUNDS_CONTROL_PKG
12.2.2
-
APPS.PA_FUNDS_CONTROL_PKG dependencies on GL_BC_PACKETS
12.1.1
-
PACKAGE BODY: APPS.PA_FUNDS_CONTROL_PKG
12.1.1
-
APPS.PA_FUNDS_CONTROL_PKG dependencies on PA_BC_PACKETS
12.1.1
-
APPS.PA_FUNDS_CONTROL_PKG dependencies on PA_BC_PACKETS
12.2.2