Search Results min_discounted_amount
Overview
APPS.XTR_AP_OPEN_APLD_TRX_V is an Oracle E-Business Suite internal reporting view owned by the APPS schema. It exposes open and applied Payables transactions—invoices and their payment schedules—in a denormalized form enriched with operating unit, vendor, ledger, and party attributes. The view is registered in FND Design Data as XTR.XTR_AP_OPEN_APLD_TRX_V and carries a status of VALID. Because Oracle classifies it as "Oracle Internal Use Only," the view is not a supported public interface; it is intended for consumption by standard Oracle Applications programs, notably the Treasury (XTR) module and its dependent view XTR_AP_OPEN_TRX_V.
Functionally, the view provides a consolidated picture of transaction amounts, discount windows, and due dates. The search term "min_due_date" reflects a common requirement: identifying the earliest payment due date across a set of open or applied invoices, which is central to cash forecasting, payment scheduling, and Treasury cash positioning.
Underlying Base Objects
The view is defined over a combination of base tables, views, and packages:
- AP_INVOICES_ALL — invoice header data such as invoice ID, number, date, and currency.
- AP_PAYMENT_SCHEDULES_ALL — payment schedule lines supplying due dates, discount amounts, and discount dates.
- AP_LOOKUP_CODES — decoded lookup values for source and transaction type.
- PO_VENDORS and PO_VENDOR_SITES_ALL — supplier and supplier site attributes.
- HR_OPERATING_UNITS — operating unit identifiers and names.
- GL_LEDGER_LE_V — ledger and set-of-books currency information.
- XTR_PARTIES_V — Treasury party (bank/counterparty) information.
- FND_GLOBAL, FND_MESSAGE, and XTR_USER_ACCESS — runtime context, message resolution, and user access/security functions.
The view is itself referenced by APPS.XTR_AP_OPEN_TRX_V, forming a layered dependency chain within the XTR object family.
Key Columns
- INVOICE_ID / PAYMENT_NUM — Invoice identifier and payment schedule number linking header to schedule line.
- TRX_NUMBER / TRX_DATE / TRX_TYPE_NAME — Transaction number, date, and decoded type.
- ORG_ID / ORG_NAME — Operating unit context.
- VENDOR_ID, VENDOR_NAME, VENDOR_SITE_ID, VENDOR_SITE_NAME — Supplier and site identification.
- CURRENCY_CODE / SOB_CURRENCY_CODE — Transaction currency and ledger currency.
- AMOUNT — Transaction amount for the schedule line.
- MAX_DISCOUNTED_AMOUNT / MIN_DISCOUNTED_AMOUNT — Maximum and minimum discounted amounts available.
- MAX_DISCOUNTED_DATE / MIN_DISCOUNTED_DATE — Latest and earliest discount eligibility dates.
- MIN_DUE_DATE — The earliest due date for the payment schedule, the column most relevant to the user's search and to "when is this invoice first payable" logic.
- APPLIED_TRX — Character flag indicating whether the transaction has been applied.
Common Use Cases and Queries
Typical usage focuses on cash forecasting, payment batching, and identifying the earliest obligation date. A representative query selecting the minimum due date by operating unit and supplier:
SELECT ORG_ID, VENDOR_NAME, TRX_NUMBER,
MIN_DUE_DATE, AMOUNT, CURRENCY_CODE
FROM APPS.XTR_AP_OPEN_APLD_TRX_V
WHERE APPLIED_TRX IS NULL
ORDER BY MIN_DUE_DATE;
A second pattern isolates invoices meeting discount windows:
SELECT INVOICE_ID, TRX_NUMBER, MIN_DISCOUNTED_DATE,
MIN_DISCOUNTED_AMOUNT, MIN_DUE_DATE
FROM APPS.XTR_AP_OPEN_APLD_TRX_V
WHERE MIN_DISCOUNTED_DATE < MIN_DUE_DATE
AND ORG_ID = :p_org_id;
Because the view embeds XTR_USER_ACCESS security predicates, results are implicitly filtered by the caller's Treasury access privileges. Direct SQL access is discouraged by Oracle; supported retrievals should be performed through standard Treasury or Payables programs that consume this view and its dependents.
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
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: APPS.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,
-
VIEW: APPS.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,
-
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.2.2
-
VIEW: APPS.XTR_AP_OPEN_TRX_V
12.1.1
-
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 ,
-
APPS.XTR_HEDGE_PROCESS_P SQL Statements
12.2.2
-
APPS.XTR_HEDGE_PROCESS_P SQL Statements
12.1.1
-
PACKAGE BODY: APPS.XTR_HEDGE_PROCESS_P
12.2.2
-
PACKAGE BODY: APPS.XTR_HEDGE_PROCESS_P
12.1.1
-
eTRM - XTR Tables and Views
12.2.2
description: Created on 29-OCT-96 ,
-
eTRM - XTR Tables and Views
12.1.1
description: Created on 29-OCT-96 ,