Search Results invoice_amount_remaining
Overview
JG_ZZ_AP_IR_REP_ITF_V is an Oracle E-Business Suite internal reporting interface view owned by the APPS schema. It is registered under FND Design Data as JG.JG_ZZ_AP_IR_REP_ITF_V and carries a VALID status in both 12.1.1 and 12.2.2 environments. The view is classified as Oracle Internal Use Only; Oracle Corporation does not support direct access to application data through this object except from standard Oracle Applications programs. Any custom reporting or integration that reads from it is therefore performed at the customer's own risk and is not covered by Oracle support.
The object is a denormalized presentation layer over Accounts Payable invoice data, exposing invoice header, supplier, batch, line, distribution, tax, and payment-method attributes in a single flattened row structure. Its name follows the Globalization (JG) naming convention, indicating it originated within the regional/localization reporting stack, specifically as an Accounts Payable Invoice Register reporting interface. The _ITF suffix denotes an interface object, and the underlying base synonym JG_ZZ_AP_IR_REP_ITF suggests a reporting interface table populated by a concurrent program or data-pump process and subsequently read by this view. The presence of REQUEST_ID, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, and LAST_UPDATE_LOGIN gives the view the standard multi-org/WHO audit signature expected of interface-style data. The column INVOICE_AMOUNT_REMAINING, the search term of interest, exposes the unpaid balance on an invoice and is the principal reason users query this view.
Underlying Base Objects
Per documented ETRM metadata, JG_ZZ_AP_IR_REP_ITF_V is defined over the following referenced objects:
- AP_BATCHES_ALL — invoice batch headers
- AP_INVOICES_ALL — invoice headers
- AP_INVOICE_LINES_ALL — invoice lines
- AP_INVOICE_DISTRIBUTIONS_ALL — accounting distributions
- AP_LOOKUP_CODES — code/meaning lookups (invoice type, line type, distribution type)
- AP_TAX_CODES_ALL — tax code definitions
- FND_DOCUMENT_SEQUENCES — document sequence names and values
- FND_GLOBAL — session context (org, user, responsibility)
- IBY_PAYMENT_METHODS_VL — payment method descriptions
- PO_VENDORS, PO_VENDOR_SITES_ALL — supplier and supplier site information
- ZX_LINES — E-Business Tax (EBTax) line and tax detail
- JG_ZZ_AP_IR_REP_ITF — the base interface synonym that supplies the staged reporting rows
The view therefore joins the staged interface data to master AP and supplier tables plus EBTax and document sequencing, producing a self-contained invoice register extract.
Key Columns
- REQUEST_ID, CREATED_BY, CREATION_DATE — identify the concurrent request and user that generated the interface rows.
- INVOICE_ID, INVOICE_NUM, INVOICE_DATE, INVOICE_TYPE — invoice identity and classification.
- INVOICE_AMOUNT, INVOICE_AMOUNT_REMAINING, INVOICE_CURRENCY_CODE, FUNCTIONAL_CURRENCY_CODE — invoice value, open balance, and currency context. INVOICE_AMOUNT_REMAINING is the amount still outstanding after payments and adjustments.
- VENDOR_ID, SUPPLIER_NAME, SUPPLIER_NAME_ALT, SUPPLIER_NUMBER, SUPPLIER_SITE — supplier identification in both primary and alternative naming.
- BATCH_ID, BATCH_NAME — invoice batch grouping.
- DOC_SEQUENCE_NAME, DOC_SEQUENCE_VALUE — voucher/document numbering.
- LINE_NUMBER, LINE_TYPE, LINE_AMOUNT, INVOICE_DESCRIPTION — invoice line detail.
- DISTRIBUTION_LINE_NUMBER, DISTRIBUTION_LINE_AMOUNT, DISTRIBUTION_ACCT_DATE, DISTRIBUTION_CCID, DISTRIBUTION_ACCOUNT, DISTRIBUTION_NATACC — distribution-level accounting.
- LIABILITY_CCID, LIABILITY_ACCOUNT, LIABILITY_DESC, LIABILITY_NATACC — liability account derivation.
- TAX_CODE, TAX_RATE, INCOME_TAX_TYPE — tax treatment.
- PAYMENT_METHOD, POSTED_FLAG, ORGANIZATION_NAME — payment, posting status, and operating unit.
Common Use Cases and Queries
The view is typically used for invoice register reporting, open-liability aging, and reconciliation extracts, particularly where the remaining balance is required. A representative query filtering on the requested column is:
- SELECT invoice_num, supplier_name, invoice_date, invoice_amount, invoice_amount_remaining, invoice_currency_code, organization_name FROM apps.jg_zz_ap_ir_rep_itf_v WHERE request_id = :p_request_id AND invoice_amount_remaining > 0 ORDER BY supplier_name, invoice_date;
- Aggregate open exposure by supplier: SELECT supplier_name, SUM(invoice_amount_remaining) open_balance FROM apps.jg_zz_ap_ir_rep_itf_v WHERE posted_flag = 'Y' GROUP BY supplier_name;
- Distribution-level reconciliation: SELECT invoice_num, distribution_line_number, distribution_account, distribution_line_amount, invoice_amount_remaining FROM apps.jg_zz_ap_ir_rep_itf_v WHERE liability_ccid = :p_ccid;
Because the object is Oracle Internal Use Only, it should be invoked from standard Oracle programs rather than embedded in supported custom code. Any custom query should pin REQUEST_ID to isolate a specific run and treat the view as read-only.
-
VIEW: APPS.JG_ZZ_AP_IR_REP_ITF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JG.JG_ZZ_AP_IR_REP_ITF_V, object_name:JG_ZZ_AP_IR_REP_ITF_V, status:VALID,
-
VIEW: APPS.JG_ZZ_AP_IR_REP_ITF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JG.JG_ZZ_AP_IR_REP_ITF_V, object_name:JG_ZZ_AP_IR_REP_ITF_V, status:VALID,
-
View: JG_ZZ_AP_IR_REP_ITF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JG.JG_ZZ_AP_IR_REP_ITF_V, object_name:JG_ZZ_AP_IR_REP_ITF_V, status:VALID, product: JG - Regional Localizations , description: Invoice Register view , implementation_dba_data: APPS.JG_ZZ_AP_IR_REP_ITF_V ,
-
View: JG_ZZ_AP_IR_REP_ITF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JG.JG_ZZ_AP_IR_REP_ITF_V, object_name:JG_ZZ_AP_IR_REP_ITF_V, status:VALID, product: JG - Regional Localizations , description: Invoice Register view , implementation_dba_data: APPS.JG_ZZ_AP_IR_REP_ITF_V ,
-
PACKAGE: APPS.OKL_BILLING_UTIL_PVT
12.1.1
-
PACKAGE: APPS.OKL_BILLING_UTIL_PVT
12.2.2
-
PACKAGE BODY: APPS.OKL_BILLING_UTIL_PVT
12.1.1
-
PACKAGE BODY: APPS.OKL_BILLING_UTIL_PVT
12.2.2
-
APPS.AP_PREPAY_PKG SQL Statements
12.1.1
-
APPS.AP_PREPAY_PKG SQL Statements
12.2.2
-
APPS.OKL_BILLING_UTIL_PVT dependencies on AR_PAYMENT_SCHEDULES_ALL
12.1.1
-
APPS.OKL_BILLING_UTIL_PVT dependencies on AR_PAYMENT_SCHEDULES_ALL
12.2.2
-
eTRM - JG Tables and Views
12.2.2
description: Additional country-specific information for vendor sites ,
-
eTRM - JG Tables and Views
12.1.1
description: Additional country-specific information for vendor sites ,
-
PACKAGE BODY: APPS.AP_PREPAY_PKG
12.2.2
-
PACKAGE BODY: APPS.AP_PREPAY_PKG
12.1.1