Search Results pn_payment_items
Overview
APPS.PN_XLA_EXTRACT_LINES_V is a reporting and integration view in Oracle E-Business Suite that exposes payment item distribution lines from Oracle Payables/Payments in a Subledger Accounting (XLA) extraction format. It is one of a family of PN_XLA_EXTRACT_*_V views that supply "extract lines" — the granular data that the Subledger Accounting engine and downstream reporting consume when accounting events are generated from Payments (application ID 240). The view presents each qualifying distribution line of a payment item together with its associated XLA event identifier, ledger, currency, and conversion-date information, effectively flattening the accounting model into a single denormalized row set.
The name follows the XLA extraction naming convention, indicating that the view is intended to serve as a data source for subledger journal line extraction, reconciliation, and audit reporting rather than for transactional entry. It is owned by the APPS schema and is typically queried by reporting tools (Oracle Reports, BI Publisher, OBIEE) and by custom integration programs that need to move payment accounting data into a general ledger or data warehouse.
Underlying Base Objects
The view is defined over four referenced objects, each accessed through an APPS synonym:
PN_PAYMENT_ITEMS— the payment item header/line table holding amounts, currency, and accounting dates.PN_PAYMENT_ITEM_DIST_ALL— the payment item distributions table holding accounted and entered amounts per accounting class and code combination.XLA_EVENTS— Subledger Accounting events, providing the event identifier.XLA_TRANSACTION_ENTITIES— XLA transaction entities, linking the source document to its accounting event.
The joins are the defining characteristic of the view: PN_PAYMENT_ITEMS.PAYMENT_ITEM_ID equates to PN_PAYMENT_ITEM_DIST_ALL.PAYMENT_ITEM_ID, and the XLA linkage is established by XLA_TRANSACTION_ENTITIES.SOURCE_ID_INT_1 = PN_PAYMENT_ITEMS.PAYMENT_ITEM_ID joined to XLA_EVENTS.ENTITY_ID = XLA_TRANSACTION_ENTITIES.ENTITY_ID. The filter XLA_EVENTS.APPLICATION_ID = 240 restricts results to the Payments application, ensuring that only payment-sourced accounting events are returned. This join path also explains the empirical relationship users observe when they search for "pn_payment_items": the view is the accounting-aware projection of that base table.
Key Columns
ACCOUNTED_AMOUNT— the accounted (ledger) amount of the distribution; wrapped inNVL(...,0)so null accounted amounts are returned as zero.ENTERED_AMOUNT— the amount as entered in the source transaction currency.CODE_COMBINATION_ID— the accounting flexfield combination for the distribution line.CONVERSION_DATE— sourced fromPN_PAYMENT_ITEMS.ACCOUNTED_DATE; the date used for currency conversion.CONVERSION_RATE/CONVERSION_RATE_TYPE— both returned asNULL(viaTO_NUMBER(NULL)andNULL) because this view forwards conversion handling to downstream XLA processing rather than exposing a rate.CURRENCY_CODE— fromPN_PAYMENT_ITEMS.EXPORT_CURRENCY_CODE, the currency in which amounts are exported.DISTRIBUTION_TYPE— mapped fromPN_PAYMENT_ITEM_DIST_ALL.ACCOUNT_CLASS, identifying the accounting class of the line.LEDGER_ID— fromPN_PAYMENT_ITEMS.SET_OF_BOOKS_ID, identifying the ledger (set of books) for the accounting entry.EVENT_ID— the XLA event identifier fromXLA_EVENTS.LINE_NUMBER— the distribution line number fromPN_PAYMENT_ITEM_DIST_ALL.
Common Use Cases and Queries
Typical uses include reconciling payment distributions to subledger journal entries, extracting payment accounting data for a general ledger interface, and auditing currency and ledger assignment on payment items. The consistent pattern is to filter by EVENT_ID, LEDGER_ID, CONVERSION_DATE, or DISTRIBUTION_TYPE.
Example — retrieve extract lines for a specific XLA event:
SELECT event_id, line_number, distribution_type, accounted_amount, entered_amount, currency_code, ledger_idFROM apps.pn_xla_extract_lines_vWHERE event_id = :p_event_idORDER BY line_number;
Example — summarize accounted amounts by ledger and currency for a period:
SELECT ledger_id, currency_code, distribution_type, SUM(accounted_amount) total_accounted, SUM(entered_amount) total_enteredFROM apps.pn_xla_extract_lines_vWHERE conversion_date BETWEEN :p_start AND :p_endGROUP BY ledger_id, currency_code, distribution_type;
Because CONVERSION_RATE and CONVERSION_RATE_TYPE are always null and ACCOUNTED_AMOUNT is zero-defaulted, consumers should treat the view as a line-level extract requiring external rate lookup rather than a self-contained currency translation source. Queries should also be bounded by event, ledger, or date to avoid the cost of scanning the underlying XLA tables.
-
VIEW: APPS.PN_XLA_EXTRACT_LINES_V
12.2.2
-
VIEW: APPS.PN_XLA_EXTRACT_LINES_V
12.1.1
-
VIEW: APPS.PN_TRX_LEASE_REVENUE
12.1.1
-
VIEW: APPS.PN_TRX_LEASE_EXPENSE
12.1.1
-
VIEW: APPS.PN_TRX_LEASE_EXPENSE
12.2.2
-
VIEW: APPS.PN_TRX_LEASE_REVENUE
12.2.2
-
VIEW: APPS.PN_EXP_PAYMENT_ITEMS_V
12.1.1
-
PACKAGE: APPS.PN_EXP_TO_AR
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PN_EXP_TO_AR, status:VALID,
-
PACKAGE: APPS.PN_EXP_TO_AR
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PN_EXP_TO_AR, status:VALID,
-
PACKAGE: APPS.PN_XLA_EVENT_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PN_XLA_EVENT_PKG, status:VALID,
-
PACKAGE: APPS.PN_XLA_EVENT_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PN_XLA_EVENT_PKG, status:VALID,
-
PACKAGE: APPS.PN_EXP_TO_AP
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PN_EXP_TO_AP, status:VALID,
-
PACKAGE: APPS.PN_EXP_TO_AP
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PN_EXP_TO_AP, status:VALID,
-
VIEW: APPS.PN_EXP_PAYMENT_ITEMS_V
12.2.2
-
PACKAGE: APPS.PN_RETRO_ADJUSTMENT_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PN_RETRO_ADJUSTMENT_PKG, status:VALID,
-
PACKAGE: APPS.PN_CREATE_ACC
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PN_CREATE_ACC, status:VALID,
-
PACKAGE: APPS.PN_RETRO_ADJUSTMENT_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PN_RETRO_ADJUSTMENT_PKG, status:VALID,
-
PACKAGE BODY: APPS.PN_VENDORMERGE_GRP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PN_VENDORMERGE_GRP, status:VALID,
-
PACKAGE BODY: APPS.PN_VENDORMERGE_GRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PN_VENDORMERGE_GRP, status:VALID,
-
PACKAGE BODY: APPS.PN_XLA_EVENT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PN_XLA_EVENT_PKG, status:VALID,
-
PACKAGE BODY: APPS.PN_XLA_EVENT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PN_XLA_EVENT_PKG, status:VALID,
-
APPS.PN_VENDORMERGE_GRP SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PNP_CMERGE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PNP_CMERGE, status:VALID,
-
View: PN_XLA_EXTRACT_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_XLA_EXTRACT_LINES_V, object_name:PN_XLA_EXTRACT_LINES_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_XLA_EXTRACT_LINES_V ,
-
PACKAGE BODY: APPS.PNP_CMERGE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PNP_CMERGE, status:VALID,
-
View: PN_XLA_EXTRACT_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_XLA_EXTRACT_LINES_V, object_name:PN_XLA_EXTRACT_LINES_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_XLA_EXTRACT_LINES_V ,
-
PACKAGE BODY: APPS.PN_MASS_APPR_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PN_MASS_APPR_PKG, status:VALID,
-
PACKAGE BODY: APPS.PN_MASS_APPR_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PN_MASS_APPR_PKG, status:VALID,
-
PACKAGE BODY: APPS.PN_RETRO_ADJUSTMENT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PN_RETRO_ADJUSTMENT_PKG, status:VALID,
-
APPS.PN_MASS_APPR_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PN_EXP_TO_AP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PN_EXP_TO_AP, status:VALID,
-
SYNONYM: APPS.PN_PAYMENT_ITEMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PN_PAYMENT_ITEMS, status:VALID,
-
PACKAGE BODY: APPS.PN_EXP_TO_AP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PN_EXP_TO_AP, status:VALID,
-
View: PN_EXP_PAYMENT_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_EXP_PAYMENT_ITEMS_V, object_name:PN_EXP_PAYMENT_ITEMS_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_EXP_PAYMENT_ITEMS_V ,
-
PACKAGE BODY: APPS.PN_VENDORMERGE_GRP
12.1.1
-
View: PN_TRX_LEASE_EXPENSE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_TRX_LEASE_EXPENSE, object_name:PN_TRX_LEASE_EXPENSE, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_TRX_LEASE_EXPENSE ,
-
View: PN_TRX_LEASE_REVENUE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_TRX_LEASE_REVENUE, object_name:PN_TRX_LEASE_REVENUE, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_TRX_LEASE_REVENUE ,
-
PACKAGE BODY: APPS.PN_RETRO_ADJUSTMENT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PN_RETRO_ADJUSTMENT_PKG, status:VALID,
-
View: PN_TRX_LEASE_EXPENSE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_TRX_LEASE_EXPENSE, object_name:PN_TRX_LEASE_EXPENSE, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_TRX_LEASE_EXPENSE ,
-
View: PN_TRX_LEASE_REVENUE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_TRX_LEASE_REVENUE, object_name:PN_TRX_LEASE_REVENUE, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_TRX_LEASE_REVENUE ,
-
VIEW: APPS.PN_AEL_PAY_GL_V
12.2.2
-
SYNONYM: APPS.PN_PAYMENT_ITEMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PN_PAYMENT_ITEMS, status:VALID,
-
VIEW: APPS.PN_AEL_PAY_GL_V
12.1.1
-
APPS.PN_MASS_APPR_PKG SQL Statements
12.2.2
-
VIEW: APPS.PN_AEL_BILL_GL_V
12.1.1
-
VIEW: APPS.PN_XLA_EXTRACT_HEADERS_V
12.2.2
-
View: PN_EXP_PAYMENT_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_EXP_PAYMENT_ITEMS_V, object_name:PN_EXP_PAYMENT_ITEMS_V, status:VALID, product: PN - Property Manager , implementation_dba_data: APPS.PN_EXP_PAYMENT_ITEMS_V ,
-
VIEW: APPS.PN_XLA_EXTRACT_HEADERS_V
12.1.1
-
PACKAGE BODY: APPS.PN_EXP_TO_AR
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PN_EXP_TO_AR, status:VALID,
-
PACKAGE BODY: APPS.PN_EXP_TO_AR
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PN_EXP_TO_AR, status:VALID,