Search Results pos_address_requests
Overview
The POS_ADDRESS_REQUESTS table, owned by the POS schema, is the core transactional object behind supplier address requests in the Oracle E-Business Suite iSupplier Portal module. It stores the working record of an address change or addition submitted by a supplier through the self-service portal, capturing the proposed address content, its processing status, its linkage to a supplier mapping and a trading partner site, and the flags that determine where the requested address may be used within procurement and payment flows. In the seeded 12.1.1 and 12.2.2 data models the table is documented as VALID with 33 columns.
The object sits between supplier registration data and the master address repositories. Each row is anchored by a surrogate primary key, ADDRESS_REQUEST_ID, enforced through the POS_ADDRESS_REQUEST_PK constraint and the unique index POS_ADDRESS_REQUEST_U1. Because the table both references upstream supplier and party-site entities and is in turn referenced by several dependent detail and audit tables, its FK structure suggests a hub-leaning Data Vault classification: it behaves like a durable business key container at the center of a narrow constellation of link and satellite relationships, rather than a pure transactional detail table.
Key Information Stored
The most operationally significant columns fall into identity, workflow, address content, contact, and usage-flag groups.
- ADDRESS_REQUEST_ID — surrogate primary key (POS_ADDRESS_REQUEST_PK / POS_ADDRESS_REQUEST_U1) and the parent key referenced by downstream tables.
- MAPPING_ID — foreign key to POS_SUPPLIER_MAPPINGS, tying the request to the supplier-to-party mapping context.
- PARTY_SITE_ID — foreign key to HZ_PARTY_SITES, the trading partner site against which the request is applied or validated.
- REQUEST_STATUS and REQUEST_TYPE — workflow state and the nature of the change requested (for example new versus modified address).
- HAS_BACKING_DOC — indicates whether supporting documentation accompanies the request.
- PARTY_SITE_NAME — the proposed or existing site name.
- ADDRESS_LINE1 through ADDRESS_LINE4, CITY, STATE, PROVINCE, COUNTY, POSTAL_CODE, and COUNTRY — the address payload.
- EMAIL_ADDRESS, PHONE_AREA_CODE, PHONE_NUMBER, PHONE_EXTENSION, FAX_AREA_CODE, FAX_NUMBER — contact details for the site.
- RFQ_FLAG, PUR_FLAG, PAY_FLAG, PRIMARY_PAY_FLAG — usage qualifiers controlling whether the address is used for RFQs, purchasing, and payments, and whether it is the primary pay site.
- END_DATE_ACTIVE — date-based deactivation for the address record.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard EBS WHO audit columns.
Common Use Cases and Queries
Typical reporting and operational scenarios include monitoring pending address requests, auditing approved changes against HZ_PARTY_SITES, and validating that payment-relevant addresses carry the correct flags. A representative query pattern joins the request to its supplier mapping and party site, filtering on status:
- Open request dashboards —
SELECT ADDRESS_REQUEST_ID, MAPPING_ID, PARTY_SITE_NAME, REQUEST_STATUS FROM POS_ADDRESS_REQUESTS WHERE REQUEST_STATUS = 'PENDING'. - Payment-address reconciliation — filter on
PAY_FLAG = 'Y'andPRIMARY_PAY_FLAG = 'Y'to confirm a single primary pay site per supplier mapping. - Change-history auditing — join to POS_ADDRESS_NOTES and POS_CONT_ADDR_REQUESTS on ADDRESS_REQUEST_ID to assemble reviewer comments and contact changes.
- Flag completeness reporting — group by MAPPING_ID and count RFQ_FLAG, PUR_FLAG, and PAY_FLAG combinations to find mappings lacking any usable address.
Related Objects
The relationship data identifies the most significant dependent and referenced objects:
- POS_SUPPLIER_MAPPINGS — referenced via POS_ADDRESS_REQUESTS.MAPPING_ID; supplies the supplier-to-party context.
- HZ_PARTY_SITES — referenced via PARTY_SITE_ID; the TCA trading partner site that acts as the master site record.
- POS_ACNT_ADDR_REQ — child table joined on ADDRESS_REQUEST_ID, holding account-level address request detail.
- POS_ADDRESS_NOTES — child table joined on ADDRESS_REQ_ID, storing request comments and feedback.
- POS_CONT_ADDR_REQUESTS — child table joined on ADDRESS_REQ_ID, storing contact-level address request detail.
Collectively these relationships position POS_ADDRESS_REQUESTS as the hub of the iSupplier Portal address-request sub-model, with HZ_PARTY_SITES providing the TCA integration point and the three child tables supplying account, contact, and commentary detail.
-
Table: POS_ADDRESS_REQUESTS
12.2.2
owner:POS, object_type:TABLE, fnd_design_data:POS.POS_ADDRESS_REQUESTS, object_name:POS_ADDRESS_REQUESTS, status:VALID, product: POS - iSupplier Portal , description: Supplier Address Requests , implementation_dba_data: POS.POS_ADDRESS_REQUESTS ,
-
SYNONYM: APPS.POS_ADDRESS_REQUESTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:POS_ADDRESS_REQUESTS, status:VALID,
-
VIEW: POS.POS_ADDRESS_REQUESTS#
12.2.2
owner:POS, object_type:VIEW, object_name:POS_ADDRESS_REQUESTS#, status:VALID,
-
SYNONYM: APPS.POS_ADDRESS_REQUESTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:POS_ADDRESS_REQUESTS, status:VALID,
-
APPS.POS_PROFILE_CHANGE_REQUEST_PKG SQL Statements
12.2.2
-
TABLE: POS.POS_ADDRESS_REQUESTS
12.2.2
owner:POS, object_type:TABLE, fnd_design_data:POS.POS_ADDRESS_REQUESTS, object_name:POS_ADDRESS_REQUESTS, status:VALID,
-
VIEW: POS.POS_ADDRESS_REQUESTS#
12.2.2
-
APPS.POS_PROFILE_CHANGE_REQUEST_PKG SQL Statements
12.1.1
-
12.1.1 DBA Data
12.1.1
-
TABLE: POS.POS_ADDRESS_REQUESTS
12.1.1
owner:POS, object_type:TABLE, object_name:POS_ADDRESS_REQUESTS, status:VALID,
-
Table: POS_SUPPLIER_MAPPINGS
12.2.2
owner:POS, object_type:TABLE, fnd_design_data:POS.POS_SUPPLIER_MAPPINGS, object_name:POS_SUPPLIER_MAPPINGS, status:VALID, product: POS - iSupplier Portal , description: References to supplier parties and/or supplier requests , implementation_dba_data: POS.POS_SUPPLIER_MAPPINGS ,
-
12.2.2 DBA Data
12.2.2
-
Table: POS_CONT_ADDR_REQUESTS
12.2.2
owner:POS, object_type:TABLE, fnd_design_data:POS.POS_CONT_ADDR_REQUESTS, object_name:POS_CONT_ADDR_REQUESTS, status:VALID, product: POS - iSupplier Portal , description: Requests for supplier contact and address links , implementation_dba_data: POS.POS_CONT_ADDR_REQUESTS ,
-
PACKAGE BODY: APPS.POS_PARTY_MERGE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:POS_PARTY_MERGE_PKG, status:VALID,
-
Table: POS_ACNT_ADDR_REQ
12.2.2
owner:POS, object_type:TABLE, fnd_design_data:POS.POS_ACNT_ADDR_REQ, object_name:POS_ACNT_ADDR_REQ, status:VALID, product: POS - iSupplier Portal , description: Table for supplier bank account and address assignment requests , implementation_dba_data: POS.POS_ACNT_ADDR_REQ ,
-
Table: POS_ADDRESS_NOTES
12.2.2
owner:POS, object_type:TABLE, fnd_design_data:POS.POS_ADDRESS_NOTES, object_name:POS_ADDRESS_NOTES, status:VALID, product: POS - iSupplier Portal , description: Notes for supplier addresses , implementation_dba_data: POS.POS_ADDRESS_NOTES ,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.POS_PARTY_MERGE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:POS_PARTY_MERGE_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.POS_SPM_WF_PKG1
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:POS_SPM_WF_PKG1, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.POS_PROFILE_CHANGE_REQUEST_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:POS_PROFILE_CHANGE_REQUEST_PKG, status:VALID,
-
PACKAGE BODY: APPS.POS_SEARCH_DUP_PARTY_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:POS_SEARCH_DUP_PARTY_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.POS_PROFILE_CHANGE_REQUEST_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:POS_PROFILE_CHANGE_REQUEST_PKG, status:VALID,
-
PACKAGE BODY: APPS.POS_SPM_WF_PKG1
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:POS_SPM_WF_PKG1, status:VALID,
-
PACKAGE BODY: APPS.POS_VENDOR_REG_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:POS_VENDOR_REG_PKG, status:VALID,
-
PACKAGE BODY: APPS.POS_VENDOR_REG_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:POS_VENDOR_REG_PKG, status:VALID,
-
APPS.POS_SEARCH_DUP_PARTY_PKG SQL Statements
12.2.2
-
APPS.POS_PARTY_MERGE_PKG SQL Statements
12.2.2
-
APPS.POS_PARTY_MERGE_PKG SQL Statements
12.1.1
-
APPS.POS_VENDOR_REG_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.POS_PROFILE_CHANGE_REQUEST_PKG
12.2.2
-
PACKAGE BODY: APPS.POS_PROFILE_CHANGE_REQUEST_PKG
12.1.1
-
APPS.POS_VENDOR_REG_PKG SQL Statements
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. ,
-
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_VENDOR_REG_PKG dependencies on POS_ADDRESS_REQUESTS
12.2.2
-
APPS.POS_PARTY_MERGE_PKG dependencies on POS_ADDRESS_REQUESTS
12.2.2
-
APPS.POS_SEARCH_DUP_PARTY_PKG dependencies on POS_ADDRESS_REQUESTS
12.2.2
-
APPS.POS_PROFILE_CHANGE_REQUEST_PKG dependencies on POS_ADDRESS_REQUESTS
12.2.2
-
APPS.POS_PROFILE_CHANGE_REQUEST_PKG dependencies on POS_ADDRESS_REQUESTS
12.1.1
-
APPS.POS_VENDOR_REG_PKG dependencies on POS_ADDRESS_REQUESTS
12.1.1
-
APPS.POS_PARTY_MERGE_PKG dependencies on POS_ADDRESS_REQUESTS
12.1.1
-
APPS.POS_SPM_WF_PKG1 dependencies on POS_ADDRESS_REQUESTS
12.1.1
-
APPS.POS_SPM_WF_PKG1 dependencies on POS_ADDRESS_REQUESTS
12.2.2
-
APPS.POS_SPM_WF_PKG1 SQL Statements
12.1.1