Search Results pos_acnt_pay_pref
Overview
The table POS.POS_ACNT_PAY_PREF is a transactional data object within the Oracle E-Business Suite iSupplier Portal (product code POS). It stores the payment preferences that a supplier defines for each of its registered addresses, allowing the buying organization and the supplier self-service portal to negotiate and persist payment methods, currencies, and notification channels at the party-site level. The object is classified with status VALID in schemas spanning Oracle EBS 12.1.1 and 12.2.2.
From a heuristic Data Vault modeling perspective, the FK structure — with references to HZ_PARTIES and HZ_PARTY_SITES — suggests this object behaves as a link entity, resolving relationships between a trading partner, an address site, and payment terms. It is not a pure hub (its primary key is a surrogate identifier rather than a natural business key), nor a standalone satellite, because it carries attributes that qualify the party/site association.
Key Information Stored
The table contains 13 documented columns. The most business-significant include:
- PAYMENT_PREFERENCE_ID — the surrogate primary key (
PAF_PK), also enforced via the unique indexPOS_ACNT_PAY_PREF_U1. This serves as the business-key candidate for the record. - PARTY_ID — foreign key to
HZ_PARTIES, identifying the supplier or trading partner organization. - PARTY_SITE_ID — foreign key to
HZ_PARTY_SITES, identifying the specific supplier address to which the preference applies. - PAYMENT_CURRENCY_CODE — the currency in which the supplier prefers to be paid.
- INVOICE_CURRENCY_CODE — the currency in which invoices are expected to be issued; may differ from the payment currency.
- PAYMENT_METHOD — the mechanism by which the supplier wishes to receive funds (e.g., check, EFT, wire).
- NOTIFICATION_METHOD — the channel the supplier elects for remittance or payment notifications.
- OBJECT_VERSION_NUMBER — optimistic locking control used by the Oracle framework.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — standard WHO-column audit attributes.
Common Use Cases and Queries
Typical scenarios include supplier onboarding validation, payment preference reporting, and reconciliation of portal-entered data against payables setup. A representative query joins the preference record back to its party and site context:
SELECT paf.payment_preference_id,
paf.party_id,
paf.party_site_id,
paf.payment_currency_code,
paf.invoice_currency_code,
paf.payment_method,
paf.notification_method
FROM pos.pos_acnt_pay_pref paf,
hz_parties hp,
hz_party_sites hps
WHERE paf.party_id = hp.party_id
AND paf.party_site_id = hps.party_site_id
AND paf.party_id = :p_party_id;
Reporting use cases include auditing suppliers that maintain multiple payment currencies per site, identifying sites with mismatched invoice and payment currencies, and feeding downstream payment templates. Because the table is owned by the POS schema, care should be taken to respect access controls; read-only queries via a reporting schema are preferable to direct DML.
Related Objects
The most significant related objects, per documented FK relationships, are:
- HZ_PARTIES — join column
PARTY_ID; the parent trading partner entity. - HZ_PARTY_SITES — join column
PARTY_SITE_ID; the address site to which each preference is scoped. - HZ_LOCATIONS — indirectly referenced via party sites to resolve physical address details.
- HZ_CUST_ACCOUNTS — often co-queried to reconcile supplier account context with payment preference.
- POS_SUPPLIER_CONTACTS — companion iSupplier Portal table for contact-level attributes.
- IBY_PAYMENT_METHODS / IBY_FNDCPT_PMT_CHANNEL_TL — reference data for
PAYMENT_METHODand notification values.
These relationships make POS_ACNT_PAY_PREF a practical link between the TCA party model and downstream payments processing in the iSupplier Portal.
-
Table: POS_ACNT_PAY_PREF
12.2.2
owner:POS, object_type:TABLE, fnd_design_data:POS.POS_ACNT_PAY_PREF, object_name:POS_ACNT_PAY_PREF, status:VALID, product: POS - iSupplier Portal , description: This table stores the payment preferences of suppliers for their addresses. , implementation_dba_data: POS.POS_ACNT_PAY_PREF ,
-
VIEW: POS.POS_ACNT_PAY_PREF#
12.2.2
owner:POS, object_type:VIEW, object_name:POS_ACNT_PAY_PREF#, status:VALID,
-
VIEW: POS.POS_ACNT_PAY_PREF#
12.2.2
-
SYNONYM: APPS.POS_ACNT_PAY_PREF
12.1.1
owner:APPS, object_type:SYNONYM, object_name:POS_ACNT_PAY_PREF, status:VALID,
-
SYNONYM: APPS.POS_ACNT_PAY_PREF
12.2.2
owner:APPS, object_type:SYNONYM, object_name:POS_ACNT_PAY_PREF, status:VALID,
-
TABLE: POS.POS_ACNT_PAY_PREF
12.1.1
owner:POS, object_type:TABLE, object_name:POS_ACNT_PAY_PREF, status:VALID,
-
TABLE: POS.POS_ACNT_PAY_PREF
12.2.2
owner:POS, object_type:TABLE, fnd_design_data:POS.POS_ACNT_PAY_PREF, object_name:POS_ACNT_PAY_PREF, status:VALID,
-
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.2.2 FND Design 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
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.POS_SBD_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:POS_SBD_PKG, status:VALID,
-
PACKAGE BODY: APPS.POS_SBD_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:POS_SBD_PKG, status:VALID,
-
Table: HZ_PARTY_SITES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTY_SITES, object_name:HZ_PARTY_SITES, status:VALID, product: AR - Receivables , description: Links party to physical locations , implementation_dba_data: AR.HZ_PARTY_SITES ,
-
APPS.POS_SBD_PKG SQL Statements
12.2.2
-
APPS.POS_SBD_PKG SQL Statements
12.1.1
-
APPS.POS_SBD_PKG dependencies on POS_ACNT_PAY_PREF
12.2.2
-
APPS.POS_SBD_PKG dependencies on POS_ACNT_PAY_PREF
12.1.1
-
Table: HZ_PARTIES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTIES, object_name:HZ_PARTIES, status:VALID, product: AR - Receivables , description: Information about parties such as organizations, people, and groups , implementation_dba_data: AR.HZ_PARTIES ,
-
eTRM - POS Tables and Views
12.2.2
description: This table is used during release 11i to release 12 upgrade. It stores vendor_ids of vendors who are considered in iSupplier Portal TCA Supplier upgrade scripts. ,
-
APPS.POS_SBD_PKG dependencies on POS_ACNT_PAY_PREF_S
12.1.1
-
APPS.POS_SBD_PKG dependencies on POS_ACNT_PAY_PREF_S
12.2.2
-
APPS.POS_SBD_PKG dependencies on FND_GLOBAL
12.1.1
-
APPS.POS_SBD_PKG dependencies on FND_GLOBAL
12.2.2
-
PACKAGE BODY: APPS.POS_SBD_PKG
12.1.1
-
PACKAGE BODY: APPS.POS_SBD_PKG
12.2.2
-
eTRM - POS Tables and Views
12.2.2
description: This table is used during release 11i to release 12 upgrade. It stores vendor_ids of vendors who are considered in iSupplier Portal TCA Supplier upgrade scripts. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1