Search Results abas_global_attribute1
Overview
The ECE_AP_CHECKS_INTERFACE table, owned by the EC (e-Commerce Gateway) schema, is a transactional interface table within Oracle E-Business Suite that stores outbound payment and remittance data. Specifically, it holds the payment records required to generate the outbound Payment/Remittance Advice transaction set (EDI 820, PAYORD, or REMADV). During an outbound payment run, Oracle Payables populates this interface table with check and electronic payment details, which the e-Commerce Gateway then reads, translates into the appropriate EDI or flat-file format, and transmits to a trading partner or financial institution.
The table is present and valid in both release 12.1.1 and 12.2.2, and the documented physical schema in 12.2.2 spans 222 columns. This large column count reflects the wide variety of optional data segments that a payment remittance document can carry, including bank, supplier, address, and descriptive flexfield attributes. With respect to the heuristic Data Vault classification mined from its foreign key structure, this table is a standalone object, meaning it does not naturally decompose into a hub, link, or satellite pattern. A modeling suggestion would be to treat it as a transient staging or interface entity rather than a durable modeled warehouse object, since its contents are batch-oriented and periodically purged or reprocessed.
Key Information Stored
The table's primary key is the ECE_AP_CHECKS_INTERFACE_PK constraint, defined on the CHECKRUN_NAME column. This surrogate-style, run-scoped key groups all payment records created by a single payment batch, and it acts as the primary access path for the e-Commerce Gateway's extraction process.
Business-key candidates and significant descriptive columns include:
- CHECKRUN_NAME — primary key linking records to a specific payment run.
- SELECTED_CHECK_ID — foreign key to AP_SELECTED_INVOICE_CHECKS_ALL, the transactional link to the originating Payables check.
- CHECK_NUMBER, CHECK_VOUCHER_NUM, CHECK_AMOUNT, CURRENCY_CODE — core payment identity and value.
- PAYMENT_DATE, VOID_FLAG, VOID_DATE — payment dating and void status.
- VENDOR_NUMBER_EXT1, VENDOR_NAME, VENDOR_SITE_CODE — supplier identification and remit-to site.
- BANK_NUM, BANK_ACCOUNT_NUM, BANK_NAME, EDI_PAYMENT_METHOD — disbursing bank and payment method details.
- VENDOR_BANK_NUM, VENDOR_BANK_ACCOUNT_NUM, IBAN_NUMBER — supplier bank routing and account data.
- DOCUMENT_ID, DOCUMENT_TYPE, DOCUMENT_STANDARD, TRANSACTION_RECORD_ID — Gateway control and document classification.
- COMMUNICATION_METHOD, TRANSACTION_HANDLING_CODE — routing and processing instructions.
Numerous ADA/global flexfield columns (ABA_GLOBAL_ATTRIBUTE1–20, ABAS_GLOBAL_ATTRIBUTE1–20, PVS_GLOBAL_ATTRIBUTE1–20) and TPH/TPD attribute columns provide extensibility for trading-partner-specific data.
Common Use Cases and Queries
Typical uses include auditing outbound payment transmissions, reconciling Gateway output to Payables payments, and troubleshooting failed remittance advice generation. A representative query retrieves all payment records for a payment run:
SELECT checkrun_name, check_number, check_amount, currency_code, vendor_name, payment_date FROM ece_ap_checks_interface WHERE checkrun_name = :p_run;- Void analysis:
SELECT check_number, void_flag, void_date FROM ece_ap_checks_interface WHERE void_flag = 'Y' AND checkrun_name = :p_run; - Joining back to Payables:
... FROM ece_ap_checks_interface c, ap_selected_invoice_checks_all a WHERE c.selected_check_id = a.check_id;
Reporting commonly aggregates payment amounts by currency or supplier, and integration teams inspect EDI_PAYMENT_METHOD and COMMUNICATION_METHOD to confirm the correct transmission channel was selected.
Related Objects
- AP_SELECTED_INVOICE_CHECKS_ALL — referenced by SELECTED_CHECK_ID; the upstream Payables source of selected checks.
- AP_CHECKS_ALL — the Payables check header table from which payment data is derived.
- ECE_AP_INVOICES_INTERFACE — companion interface table carrying remittance invoice detail for the 820 transaction.
- ECE_TP_HEADERS / ECE_TP_TRANSLATORS — trading partner and translator configuration used by the Gateway extraction.
- IBY_PAYMENTS / IBY_PAYMENT_METHODS — Payments module records underpinning electronic payment methods.
- e-Commerce Gateway outbound concurrent programs and the ECE_OUTBOUND_* API family, which read this table to produce the final EDI output.
-
Table: ECE_AP_CHECKS_INTERFACE
12.2.2
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_AP_CHECKS_INTERFACE, object_name:ECE_AP_CHECKS_INTERFACE, status:VALID, product: EC - e-Commerce Gateway , description: Contains the payment data to support the outbound Payment/Remittance Advice (820/PAYORD/REMADV) transaction. , implementation_dba_data: EC.ECE_AP_CHECKS_INTERFACE ,
-
Table: ECE_AP_CHECKS_INTERFACE
12.1.1
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_AP_CHECKS_INTERFACE, object_name:ECE_AP_CHECKS_INTERFACE, status:VALID, product: EC - e-Commerce Gateway , description: Contains the payment data to support the outbound Payment/Remittance Advice (820/PAYORD/REMADV) transaction. , implementation_dba_data: EC.ECE_AP_CHECKS_INTERFACE ,
-
Table: IBY_PYO_PAYMENT_GT
12.2.2
owner:APPS, object_type:TABLE, fnd_design_data:IBY.IBY_PYO_PAYMENT_GT, object_name:IBY_PYO_PAYMENT_GT, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_PYO_PAYMENT_GT ,
-
VIEW: EC.ECE_AP_CHECKS_INTERFACE#
12.2.2
-
View: ECE_PYO_PAYMENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_PYO_PAYMENT_V, object_name:ECE_PYO_PAYMENT_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts payment informationfor the outbound Payment Order/Remittance Advice (820/PAYORD/REMADV) transaction.@rep:scope private@rep:product AP@rep:lifecycle active@rep:displayname Payment Order/Remittance Advice Payment View@rep:c , implementation_dba_data: APPS.ECE_PYO_PAYMENT_V ,
-
View: ECE_PYO_PAYMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_PYO_PAYMENT_V, object_name:ECE_PYO_PAYMENT_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts payment informationfor the outbound Payment Order/Remittance Advice (820/PAYORD/REMADV) transaction.@rep:scope private@rep:product AP@rep:lifecycle active@rep:displayname Payment Order/Remittance Advice Payment View@rep:c , implementation_dba_data: APPS.ECE_PYO_PAYMENT_V ,
-
VIEW: EC.ECE_AP_CHECKS_INTERFACE#
12.2.2
owner:EC, object_type:VIEW, object_name:ECE_AP_CHECKS_INTERFACE#, status:VALID,
-
VIEW: APPS.ECE_PYO_PAYMENT_V
12.1.1
-
VIEW: APPS.ECE_PYO_PAYMENT_V
12.2.2
-
TABLE: APPS.IBY_PYO_PAYMENT_GT
12.2.2
owner:APPS, object_type:TABLE, fnd_design_data:IBY.IBY_PYO_PAYMENT_GT, object_name:IBY_PYO_PAYMENT_GT, status:VALID,
-
APPS.IBY_PYO_TRANSACTION SQL Statements
12.2.2
-
APPS.ECE_AP_PAYMENT SQL Statements
12.2.2
-
VIEW: APPS.ECE_PYO_PAYMENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_PYO_PAYMENT_V, object_name:ECE_PYO_PAYMENT_V, status:VALID,
-
VIEW: APPS.ECE_PYO_PAYMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_PYO_PAYMENT_V, object_name:ECE_PYO_PAYMENT_V, status:VALID,
-
TABLE: EC.ECE_AP_CHECKS_INTERFACE
12.2.2
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_AP_CHECKS_INTERFACE, object_name:ECE_AP_CHECKS_INTERFACE, status:VALID,
-
TABLE: EC.ECE_AP_CHECKS_INTERFACE
12.1.1
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_AP_CHECKS_INTERFACE, object_name:ECE_AP_CHECKS_INTERFACE, status:VALID,
-
PACKAGE BODY: APPS.ECE_AP_PAYMENT
12.2.2
-
PACKAGE BODY: APPS.IBY_PYO_TRANSACTION
12.2.2
-
eTRM - EC Tables and Views
12.2.2
description: Contains the information for code conversions which identify external values for a given Oracle internal value and vice versa. ,
-
eTRM - EC Tables and Views
12.1.1
description: Contains the information for code conversions which identify external values for a given Oracle internal value and vice versa. ,
-
eTRM - IBY Tables and Views
12.2.2
description: Stores the user privilege settings for viewing sensitive data in iPayment operations UI ,