Search Results xtr_ap_source_other
Overview
APPS.XTR_AP_ORIG_TRX_V is a reporting view in Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 that presents accounts payable invoice transactions in the form consumed by Oracle E-Business Tax (E-Business Tax / ETRM) and its associated tax reporting and integration flows. The view acts as a normalized, user-facing projection of AP invoice data, converting internal lookup codes into translatable display strings and pairing each invoice with its vendor, vendor site, operating unit, party, and payment schedule attributes. It is owned by the APPS schema and is referenced by ETRM components and by external reporting or data-extraction processes that need a consistent view of original invoice transactions for tax determination, reconciliation, and audit purposes.
The name and the decode logic confirm its role as the "original transaction" source for ETRM: the SOURCE column is mapped to the message keys XTR_AP_SOURCE_MANUAL and XTR_AP_SOURCE_OTHER when no displayed field is defined in AP_LOOKUP_CODES. This directly addresses the search term "xtr_ap_source_other", which is the message key used to represent non-manual invoice sources on the view.
Underlying Base Objects
The view is defined over the following documented base objects:
- AP_INVOICES_ALL (synonym) — header-level invoice records; supplies INVOICE_ID, ORG_ID, VENDOR_ID, VENDOR_SITE_ID, INVOICE_TYPE_LOOKUP_CODE, INVOICE_DATE, INVOICE_NUM, PAYMENT_CURRENCY_CODE, and SOURCE.
- AP_PAYMENT_SCHEDULES_ALL (synonym) — payment schedules joined by INVOICE_ID and ORG_ID; supplies PAYMENT_NUM, GROSS_AMOUNT / INV_CURR_GROSS_AMOUNT, and DUE_DATE.
- AP_LOOKUP_CODES (view) — joined twice: as ALC for INVOICE TYPE and as ALK (outer-joined) for SOURCE, providing DISPLAYED_FIELD values that drive the decode logic.
- PO_VENDORS and PO_VENDOR_SITES_ALL (views) — provide VENDOR_NAME and VENDOR_SITE_CODE.
- HR_OPERATING_UNITS (view) — resolves ORG_ID to the operating unit NAME and set of books.
- GL_LEDGER_LE_V (view) — subquery constrains the operating unit to the primary ledger of the party's legal entity.
- XTR_PARTIES_V (view) — supplies PARTY_CODE and LEGAL_ENTITY_ID for the tax party context.
- FND_MESSAGE (package) — retrieves translated strings for XTR_AP_SOURCE_MANUAL and XTR_AP_SOURCE_OTHER.
- FND_GLOBAL (package) and XTR_USER_ACCESS (package) — documented dependencies supporting session/access context.
Only non-cancelled invoices (CANCELLED_DATE IS NULL) with a non-zero gross amount are returned.
Key Columns
- INVOICE_ID, INVOICE_NUM, INVOICE_DATE — primary invoice identifiers.
- PAYMENT_NUM, DUE_DATE, GROSS_AMOUNT — payment schedule detail derived from AP_PAYMENT_SCHEDULES_ALL.
- SOURCE (decoded) — the invoice source, rendered either from ALK.DISPLAYED_FIELD or, when null, as XTR_AP_SOURCE_MANUAL or XTR_AP_SOURCE_OTHER.
- INVOICE_TYPE_LOOKUP_CODE, ALC.DISPLAYED_FIELD — invoice type code and its display label.
- ORG_ID, HOU.NAME — operating unit identifier and name.
- VENDOR_ID, VENDOR_NAME, VENDOR_SITE_ID, VENDOR_SITE_CODE — supplier and site attributes.
- PARTY_CODE — tax party code from XTR_PARTIES_V.
- PAYMENT_CURRENCY_CODE — currency of the payment schedule amount.
Common Use Cases and Queries
Typical uses include ETRM tax reporting, reconciliation of AP invoice sources, and extracts feeding tax engines or data warehouses.
- Listing invoices by source, including the XTR_AP_SOURCE_OTHER bucket.
- Aggregating gross amounts by operating unit and party.
- Extracting invoice and vendor detail for a given period.
Sample SQL:
SELECT invoice_num, vendor_name, source, gross_amount, due_date
FROM apps.xtr_ap_orig_trx_v
WHERE source = fnd_message.get_string('XTR','XTR_AP_SOURCE_OTHER');
SELECT org_id, party_code, SUM(gross_amount)
FROM apps.xtr_ap_orig_trx_v
WHERE invoice_date BETWEEN :p_start AND :p_end
GROUP BY org_id, party_code;
-
VIEW: APPS.XTR_AP_ORIG_TRX_V
12.1.1
-
VIEW: APPS.XTR_AP_ORIG_TRX_V
12.2.2
-
View: XTR_AP_OPEN_TRX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_AP_OPEN_TRX_V, object_name:XTR_AP_OPEN_TRX_V, status:VALID, product: XTR - Treasury , description: This view is used for Hedge Positions form. , implementation_dba_data: APPS.XTR_AP_OPEN_TRX_V ,
-
View: XTR_AP_OPEN_TRX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_AP_OPEN_TRX_V, object_name:XTR_AP_OPEN_TRX_V, status:VALID, product: XTR - Treasury , description: This view is used for Hedge Positions form. , implementation_dba_data: APPS.XTR_AP_OPEN_TRX_V ,
-
VIEW: APPS.XTR_AP_OPEN_TRX_V
12.1.1
-
VIEW: APPS.XTR_AP_OPEN_TRX_V
12.2.2
-
VIEW: APPS.XTR_AP_OPEN_APLD_TRX_V
12.2.2
-
VIEW: APPS.XTR_AP_OPEN_APLD_TRX_V
12.1.1
-
View: XTR_AP_ORIG_TRX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_AP_ORIG_TRX_V, object_name:XTR_AP_ORIG_TRX_V, status:VALID, product: XTR - Treasury , description: The XTR_AP_ORIG_TRX_V view is used in the Current Hedge Items window of the Hedge Relationship - Forecast (XTRINHRF) form when the Source is Payables , implementation_dba_data: APPS.XTR_AP_ORIG_TRX_V ,
-
View: XTR_AP_ORIG_TRX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_AP_ORIG_TRX_V, object_name:XTR_AP_ORIG_TRX_V, status:VALID, product: XTR - Treasury , description: The XTR_AP_ORIG_TRX_V view is used in the Current Hedge Items window of the Hedge Relationship - Forecast (XTRINHRF) form when the Source is Payables , implementation_dba_data: APPS.XTR_AP_ORIG_TRX_V ,
-
View: XTR_AP_OPEN_APLD_TRX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_AP_OPEN_APLD_TRX_V, object_name:XTR_AP_OPEN_APLD_TRX_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_AP_OPEN_APLD_TRX_V ,
-
View: XTR_AP_OPEN_APLD_TRX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_AP_OPEN_APLD_TRX_V, object_name:XTR_AP_OPEN_APLD_TRX_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_AP_OPEN_APLD_TRX_V ,
-
PACKAGE BODY: APPS.XTR_XTRHOAPR_XMLP_PKG
12.2.2
-
PACKAGE BODY: APPS.XTR_XTRHOAPR_XMLP_PKG
12.1.1
-
APPS.XTR_XTRHOAPR_XMLP_PKG dependencies on FND_MESSAGE
12.1.1
-
APPS.XTR_XTRHOAPR_XMLP_PKG dependencies on FND_MESSAGE
12.2.2
-
APPS.XTR_HEDGE_PROCESS_P SQL Statements
12.2.2
-
APPS.XTR_HEDGE_PROCESS_P SQL Statements
12.1.1
-
APPS.XTR_HEDGE_PROCESS_P dependencies on FND_MESSAGE
12.1.1
-
APPS.XTR_HEDGE_PROCESS_P dependencies on FND_MESSAGE
12.2.2
-
APPS.XTR_HEDGE_PROCESS_P dependencies on DUAL
12.1.1
-
APPS.XTR_HEDGE_PROCESS_P dependencies on DUAL
12.2.2
-
PACKAGE BODY: APPS.XTR_HEDGE_PROCESS_P
12.1.1
-
PACKAGE BODY: APPS.XTR_HEDGE_PROCESS_P
12.2.2