Search Results ap_tolerance_templates
Overview
AP_TOLERANCE_TEMPLATES is a Payables (AP) module table in Oracle E-Business Suite 12.1.1 and 12.2.2 that stores matching and invoice variance testing tolerance levels. Each row defines a named tolerance template that governs how the Payables matching and approval processes evaluate discrepancies between invoice, purchase order, and receipt amounts and quantities. When an invoice is matched to a purchase order or receipt, or when it is submitted for approval, the applicable tolerance template determines the acceptable variance thresholds before an invoice is placed on hold or rejected.
From a Data Vault modeling perspective, the mined foreign-key structure classifies this object as satellite-leaning. This is a heuristic suggestion rather than a physical classification: AP_TOLERANCE_TEMPLATES behaves primarily as a descriptive satellite attached to a business key, with only lightweight referential links to FND_USER and FND_LOGINS for audit columns. The table carries no natural parent-child hierarchy within itself; it is a configuration master whose rows are referenced by operational Payables entities.
Key Information Stored
The table contains 19 documented columns. The surrogate primary key is TOLERANCE_ID, enforced by the AP_TOLERANCE_TEMPLATES_PK constraint and mirrored by the unique index AP_TOLERANCE_TEMPLATES_U1, which is the documented business-key candidate. TOLERANCE_ID is the column consumed by all referencing tables, so it functions as both the technical and the propagated integration key.
- TOLERANCE_NAME and DESCRIPTION — the user-facing identifier and explanatory text for the template.
- TOLERANCE_TYPE — the category that determines which matching or variance rule set the template applies to.
- PRICE_TOLERANCE, QUANTITY_TOLERANCE, and QTY_RECEIVED_TOLERANCE — core thresholds for price variance, ordered-quantity variance, and received-quantity variance during matching.
- TAX_TOLERANCE and TAX_TOL_AMT_RANGE — thresholds governing acceptable tax variance and the monetary range within which tax tolerance is evaluated.
- MAX_QTY_ORD_TOLERANCE and MAX_QTY_REC_TOLERANCE — maximum quantity tolerances relative to ordered and received quantities.
- SHIP_AMT_TOLERANCE, RATE_AMT_TOLERANCE, and TOTAL_AMT_TOLERANCE — monetary tolerance limits for shipment, rate, and total invoice amounts.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and LAST_UPDATE_LOGIN — standard audit columns linked to FND_USER and FND_LOGINS.
Common Use Cases and Queries
The most frequent operational scenario is determining which tolerance template applies to a supplier site or to the Payables system as a whole. Because AP_SYSTEM_PARAMETERS_ALL.TOLERANCE_ID and AP_SUPPLIER_SITES_ALL.TOLERANCE_ID both reference this table, a query joining these entities returns the effective tolerance definition:
- Retrieve all templates for a tolerance setup review:
SELECT tolerance_id, tolerance_name, tolerance_type, price_tolerance, quantity_tolerance FROM ap.ap_tolerance_templates; - Resolve the system-level default template:
SELECT t.* FROM ap.ap_tolerance_templates t, ap.ap_system_parameters_all s WHERE t.tolerance_id = s.tolerance_id; - Resolve supplier-site-level templates:
SELECT t.tolerance_name, s.vendor_site_code FROM ap.ap_tolerance_templates t, ap.ap_supplier_sites_all s WHERE t.tolerance_id = s.tolerance_id; - Audit configuration changes by joining LAST_UPDATED_BY to FND_USER to identify the last editor of each template.
Reporting use cases include reconciliation of invoice hold volume against tolerance settings, impact analysis before tightening thresholds, and data-migration validation when supplier site or system parameter records are staged in AP_SUPPLIER_SITES_INT with a TOLERANCE_ID.
Related Objects
- AP_SYSTEM_PARAMETERS_ALL — references AP_TOLERANCE_TEMPLATES.TOLERANCE_ID via TOLERANCE_ID; supplies the system-level default tolerance template.
- AP_SUPPLIER_SITES_ALL — references AP_TOLERANCE_TEMPLATES.TOLERANCE_ID via TOLERANCE_ID; assigns supplier-site-specific tolerance behavior.
- AP_SUPPLIER_SITES_INT — references AP_TOLERANCE_TEMPLATES.TOLERANCE_ID via TOLERANCE_ID; carries tolerance assignments during supplier site interface processing.
- FND_USER — referenced by CREATED_BY and LAST_UPDATED_BY for audit traceability.
- FND_LOGINS — referenced by LAST_UPDATE_LOGIN to capture the session that performed the last update.
These relationships confirm that AP_TOLERANCE_TEMPLATES is a referenced configuration table rather than a transaction table; changes to its rows propagate directly into matching behavior for any invoice processed under the associated system parameters or supplier site.
-
Table: AP_TOLERANCE_TEMPLATES
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_TOLERANCE_TEMPLATES, object_name:AP_TOLERANCE_TEMPLATES, status:VALID, product: AP - Payables , description: Matching and invoice variance testing tolerance levels , implementation_dba_data: AP.AP_TOLERANCE_TEMPLATES ,
-
Table: AP_TOLERANCE_TEMPLATES
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_TOLERANCE_TEMPLATES, object_name:AP_TOLERANCE_TEMPLATES, status:VALID, product: AP - Payables , description: Matching and invoice variance testing tolerance levels , implementation_dba_data: AP.AP_TOLERANCE_TEMPLATES ,
-
SYNONYM: APPS.AP_TOLERANCE_TEMPLATES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AP_TOLERANCE_TEMPLATES, status:VALID,
-
VIEW: AP.AP_TOLERANCE_TEMPLATES#
12.2.2
owner:AP, object_type:VIEW, object_name:AP_TOLERANCE_TEMPLATES#, status:VALID,
-
VIEW: APPS.AP_TOLERANCES
12.1.1
-
VIEW: APPS.AP_TOLERANCES
12.2.2
-
SYNONYM: APPS.AP_TOLERANCE_TEMPLATES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AP_TOLERANCE_TEMPLATES, status:VALID,
-
VIEW: AP.AP_TOLERANCE_TEMPLATES#
12.2.2
-
TABLE: AP.AP_TOLERANCE_TEMPLATES
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_TOLERANCE_TEMPLATES, object_name:AP_TOLERANCE_TEMPLATES, status:VALID,
-
TABLE: AP.AP_TOLERANCE_TEMPLATES
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_TOLERANCE_TEMPLATES, object_name:AP_TOLERANCE_TEMPLATES, status:VALID,
-
PACKAGE: APPS.FUN_VENDOR_PVT_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FUN_VENDOR_PVT_PKG, status:VALID,
-
Table: AP_SUPPLIER_SITES_INT
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_SUPPLIER_SITES_INT, object_name:AP_SUPPLIER_SITES_INT, status:VALID, product: AP - Payables , description: AP_SUPPLIER_SITES_INT_ALL holds Supplier Site information which is loadedby the user for import. The columns in the table map to corresponding columnsin PO_VENDOR_SITES_ALL table. The Oracle Payables application uses this information to , implementation_dba_data: AP.AP_SUPPLIER_SITES_INT ,
-
Table: AP_SUPPLIER_SITES_INT
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_SUPPLIER_SITES_INT, object_name:AP_SUPPLIER_SITES_INT, status:VALID, product: AP - Payables , description: AP_SUPPLIER_SITES_INT_ALL holds Supplier Site information which is loadedby the user for import. The columns in the table map to corresponding columnsin PO_VENDOR_SITES_ALL table. The Oracle Payables application uses this information to , implementation_dba_data: AP.AP_SUPPLIER_SITES_INT ,
-
View: AP_TOLERANCES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_TOLERANCES, object_name:AP_TOLERANCES, status:VALID, product: AP - Payables , description: AP_TOLERANCE , implementation_dba_data: APPS.AP_TOLERANCES ,
-
View: AP_TOLERANCES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_TOLERANCES, object_name:AP_TOLERANCES, status:VALID, product: AP - Payables , description: AP_TOLERANCE , implementation_dba_data: APPS.AP_TOLERANCES ,
-
Table: AP_SYSTEM_PARAMETERS_ALL
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_SYSTEM_PARAMETERS_ALL, object_name:AP_SYSTEM_PARAMETERS_ALL, status:VALID, product: AP - Payables , description: Payables system defaults and parameters , implementation_dba_data: AP.AP_SYSTEM_PARAMETERS_ALL ,
-
PACKAGE: APPS.FUN_VENDOR_PVT_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FUN_VENDOR_PVT_PKG, status:VALID,
-
Table: AP_SYSTEM_PARAMETERS_ALL
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_SYSTEM_PARAMETERS_ALL, object_name:AP_SYSTEM_PARAMETERS_ALL, status:VALID, product: AP - Payables , description: Payables system defaults and parameters , implementation_dba_data: AP.AP_SYSTEM_PARAMETERS_ALL ,
-
VIEW: APPS.AP_TOLERANCES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_TOLERANCES, object_name:AP_TOLERANCES, status:VALID,
-
VIEW: APPS.AP_TOLERANCES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_TOLERANCES, object_name:AP_TOLERANCES, status:VALID,
-
PACKAGE: APPS.AP_APPROVAL_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:AP_APPROVAL_PKG, status:VALID,
-
PACKAGE BODY: APPS.AP_IMPORT_UTILITIES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AP_IMPORT_UTILITIES_PKG, status:VALID,
-
PACKAGE: APPS.AP_APPROVAL_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:AP_APPROVAL_PKG, status:VALID,
-
PACKAGE BODY: APPS.AP_IMPORT_UTILITIES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AP_IMPORT_UTILITIES_PKG, status:VALID,
-
PACKAGE: APPS.AP_VENDOR_PUB_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:AP_VENDOR_PUB_PKG, status:VALID,
-
PACKAGE: APPS.AP_VENDOR_PUB_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:AP_VENDOR_PUB_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
Table: FND_LOGINS
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_LOGINS, object_name:FND_LOGINS, status:VALID, product: FND - Application Object Library , description: Sign-On Audit information about who signs on to an application and when , implementation_dba_data: APPLSYS.FND_LOGINS ,
-
Table: FND_LOGINS
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_LOGINS, object_name:FND_LOGINS, status:VALID, product: FND - Application Object Library , description: Sign-On Audit information about who signs on to an application and when , implementation_dba_data: APPLSYS.FND_LOGINS ,
-
Table: FND_USER
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_USER, object_name:FND_USER, status:VALID, product: FND - Application Object Library , description: Application users , implementation_dba_data: APPLSYS.FND_USER ,
-
Table: FND_USER
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_USER, object_name:FND_USER, status:VALID, product: FND - Application Object Library , description: Application users , implementation_dba_data: APPLSYS.FND_USER ,
-
PACKAGE BODY: APPS.AP_APPROVAL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AP_APPROVAL_PKG, status:VALID,
-
PACKAGE BODY: APPS.AP_VENDOR_PUB_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AP_VENDOR_PUB_PKG, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.AP_APPROVAL_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AP_APPROVAL_PKG, status:VALID,
-
PACKAGE BODY: APPS.AP_VENDOR_PUB_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AP_VENDOR_PUB_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.ZX_EVNT_OPTIONS_MIGRATE_PKG SQL Statements
12.1.1
-
APPS.ZX_EVNT_OPTIONS_MIGRATE_PKG SQL Statements
12.2.2
-
APPS.AP_VENDOR_PUB_PKG dependencies on AP_TOLERANCE_TEMPLATES
12.2.2
-
APPS.AP_APPROVAL_PKG dependencies on AP_TOLERANCE_TEMPLATES
12.2.2
-
APPS.AP_APPROVAL_PKG dependencies on AP_TOLERANCE_TEMPLATES
12.1.1
-
APPS.AP_VENDOR_PUB_PKG dependencies on AP_TOLERANCE_TEMPLATES
12.1.1