Search Results source_event_id




Overview

The view PA_XLA_BC_PKT_AP_DETAIL_V is an Oracle Projects (PA) subledger accounting extraction view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It presents Payables-sourced burden cost packet detail lines destined for the Subledger Accounting (XLA) accounting program. Its role is to flatten the burden packet structures held in PA_BC_PACKETS and join them to the originating Payables distribution lines so that the Create Accounting process can derive the correct entered and accounted amounts, distribution link types, and descriptive attributes.

The view resolves the classic burden cost extraction problem: burden distributions are stored in Projects tables, but their source amounts reside on Payables invoice distributions. By exposing the currency, ledger, event type, and category context for each packet row, the view supplies the columns the XLA event entity requires to build journal entries for burden costs applied against AP invoice distributions, including prepayment applications and prepayment application nonrecoverable tax lines.

Underlying Base Objects

The documented base objects underlying this view are:

Key Columns

Common Use Cases and Queries

The view is queried primarily during diagnosis of burden cost accounting, SLA event feeds, and currency discrepancies on AP-sourced burden lines. A typical diagnostic query retrieves invoice currency and amounts for a given burden packet:

  • SELECT bc_event_id, source_event_id, document_distribution_id, ai_invoice_id, ai_invoice_currency_code, aid_amount, aid_base_amt_no_round FROM apps.pa_xla_bc_pkt_ap_detail_v WHERE bc_packet_id = :p_packet_id;
  • Joining to PA_BC_PACKETS or PA_EXPENDITURE_ITEMS_ALL when reconciling burden costs to a project expenditure item.
  • Filtering by distribution_link_type = 'PA_AP_BURDEN' to isolate AP burden lines from PO burden lines.
  • Reviewing event_type and expenditure_category when validating SLA event classification.

Because the view references XLA_EVENTS_GT, queries executed inside the accounting program's session can see transient accounting events; ad hoc queries outside that session should be limited to the persisted packet and distribution columns.