Search Results party_address2
Overview
APPS.CS_SYSTEM_BILLTO_LOC_RG_V is a read-only Oracle EBS database view owned by the APPS schema and registered under the FND Design Data application CS (Customer Service / Service/Oracle TeleService). It presents a consolidated result set of party and bill-to address information, joining customer account sites to their underlying party, party site, and physical location records. The view is classified as "Internal" with status VALID and is documented as Oracle Internal Use Only: Oracle Corporation does not support direct access to this object except from standard Oracle Applications programs. It is therefore intended to be consumed implicitly by Oracle Service and related runtime logic rather than as a supported public interface.
From a reporting and integration perspective, the view serves as a convenient denormalized projection combining the customer account site identifier, the customer account identifier, the party name, and address components (city, formatted address, and multiple address lines). The view is not referenced by any other database object, confirming it is a leaf-level consumer object. Users searching for the term "party_address" will find this view relevant because its PARTY_ADDRESS column exposes a long, concatenated address string (VARCHAR2(1207)), while PARTY_ADDRESS1/2/3 provide discrete, bounded address line values.
Underlying Base Objects
The view is defined over four base objects, exposed to APPS through synonyms:
- HZ_CUST_ACCT_SITES_ALL — the customer account site assignments, including the bill-to/ship-to usage context and the CUST_ACCT_SITE_ID and CUST_ACCOUNT_ID key columns.
- HZ_PARTY_SITES — the association between a party and a physical site, linking parties to locations.
- HZ_LOCATIONS — the address master, providing the physical address attributes such as city and address lines.
- HZ_PARTIES — the party master, supplying the party name exposed as PARTY_NAME.
Because these are the TCA (Trading Community Architecture) foundation tables, the view inherits the standard TCA data model relationships: a party owns party sites; a party site references a location; and a customer account site references a party site. The view collapses this multi-table chain into a single flattened SELECT list suited to Service application queries driven by a specific bill-to location requirement.
Key Columns
- PARTY_ADDRESS (VARCHAR2(1207)) — the concatenated, display-ready party address; this is the column most directly associated with the "party_address" search term.
- PARTY_ADDRESS1 / PARTY_ADDRESS2 / PARTY_ADDRESS3 (VARCHAR2 240/240/220) — the individual address line components of the location.
- PARTY_CITY (VARCHAR2(60)) — the city of the party location.
- PARTY_NAME (VARCHAR2(360)) — the party name from HZ_PARTIES.
- CUST_ACCT_SITE_ID (NUMBER(15)) — the customer account site identifier, the primary join point to account site context.
- CUST_ACCOUNT_ID (NUMBER(15)) — the customer account identifier.
No column in the documented structure is marked Mandatory, so consumers should guard against nulls, particularly for address elements that may be unmaintained on the base location record.
Common Use Cases and Queries
Typical scenarios include retrieving the bill-to address for a customer account site during Service request or order processing, resolving a party name and its mailing address for display, and reciprocal lookups between CUST_ACCT_SITE_ID and the address block. A basic query selecting all columns follows the documented query text:
- Retrieve a bill-to location by account site:
SELECT PARTY_CITY, PARTY_ADDRESS, PARTY_NAME, CUST_ACCT_SITE_ID, PARTY_ADDRESS1, PARTY_ADDRESS2, PARTY_ADDRESS3, CUST_ACCOUNT_ID FROM APPS.CS_SYSTEM_BILLTO_LOC_RG_V WHERE CUST_ACCT_SITE_ID = :p_site_id;
- Search by party name and city to locate candidate bill-to sites:
SELECT CUST_ACCOUNT_ID, CUST_ACCT_SITE_ID, PARTY_NAME, PARTY_ADDRESS FROM APPS.CS_SYSTEM_BILLTO_LOC_RG_V WHERE UPPER(PARTY_NAME) LIKE UPPER(:p_name) AND UPPER(PARTY_CITY) = UPPER(:p_city);
Given the Oracle Internal Use Only designation, these statements should be reserved for diagnostic and read-only reporting purposes. Where a supported integration is required, the underlying HZ_* TCA tables and their public APIs should be used instead.
-
VIEW: APPS.CS_SYSTEM_BILLTO_LOC_RG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SYSTEM_BILLTO_LOC_RG_V, object_name:CS_SYSTEM_BILLTO_LOC_RG_V, status:VALID,
-
View: CS_SYSTEM_BILLTO_LOC_RG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SYSTEM_BILLTO_LOC_RG_V, object_name:CS_SYSTEM_BILLTO_LOC_RG_V, status:VALID, product: CS - Service , implementation_dba_data: APPS.CS_SYSTEM_BILLTO_LOC_RG_V ,
-
View: CS_SYSTEM_BILLTO_LOC_RG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SYSTEM_BILLTO_LOC_RG_V, object_name:CS_SYSTEM_BILLTO_LOC_RG_V, status:VALID, product: CS - Service , implementation_dba_data: APPS.CS_SYSTEM_BILLTO_LOC_RG_V ,
-
View: CSI_HZCA_ADDRESSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_HZCA_ADDRESSES_V, object_name:CSI_HZCA_ADDRESSES_V, status:VALID, product: CSI - Install Base , description: Customer Account Address View for the record groups. , implementation_dba_data: APPS.CSI_HZCA_ADDRESSES_V ,
-
View: CSI_HZCA_ADDRESSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_HZCA_ADDRESSES_V, object_name:CSI_HZCA_ADDRESSES_V, status:VALID, product: CSI - Install Base , description: Customer Account Address View for the record groups. , implementation_dba_data: APPS.CSI_HZCA_ADDRESSES_V ,
-
VIEW: APPS.CS_SYSTEM_BILLTO_LOC_RG_V
12.1.1
-
VIEW: WSH.WSH_ITM_PARTIES#
12.2.2
-
VIEW: APPS.CSI_HZCA_ADDRESSES_V
12.1.1
-
VIEW: APPS.CSI_HZCA_ADDRESSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_HZCA_ADDRESSES_V, object_name:CSI_HZCA_ADDRESSES_V, status:VALID,
-
VIEW: APPS.CSI_HZCA_SITE_USES_V
12.1.1
-
VIEW: APPS.CS_SYSTEM_BILLTO_LOC_RG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SYSTEM_BILLTO_LOC_RG_V, object_name:CS_SYSTEM_BILLTO_LOC_RG_V, status:VALID,
-
View: CSI_HZCA_SITE_USES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_HZCA_SITE_USES_V, object_name:CSI_HZCA_SITE_USES_V, status:VALID, product: CSI - Install Base , description: Customer Account Site uses view for record groups. , implementation_dba_data: APPS.CSI_HZCA_SITE_USES_V ,
-
VIEW: APPS.CSI_HZCA_ADDRESSES_V
12.2.2
-
VIEW: APPS.CS_SYSTEM_BILLTO_LOC_RG_V
12.2.2
-
VIEW: APPS.CSI_HZCA_SITE_USES_V
12.2.2
-
View: CSI_HZCA_SITE_USES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_HZCA_SITE_USES_V, object_name:CSI_HZCA_SITE_USES_V, status:VALID, product: CSI - Install Base , description: Customer Account Site uses view for record groups. , implementation_dba_data: APPS.CSI_HZCA_SITE_USES_V ,
-
VIEW: APPS.CSI_HZCA_ADDRESSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_HZCA_ADDRESSES_V, object_name:CSI_HZCA_ADDRESSES_V, status:VALID,
-
VIEW: WSH.WSH_ITM_PARTIES#
12.2.2
owner:WSH, object_type:VIEW, object_name:WSH_ITM_PARTIES#, status:VALID,
-
VIEW: APPS.CSI_HZCA_SITE_USES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_HZCA_SITE_USES_V, object_name:CSI_HZCA_SITE_USES_V, status:VALID,
-
VIEW: APPS.CSI_HZCA_SITE_USES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_HZCA_SITE_USES_V, object_name:CSI_HZCA_SITE_USES_V, status:VALID,
-
TABLE: WSH.WSH_ITM_PARTIES
12.1.1
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_ITM_PARTIES, object_name:WSH_ITM_PARTIES, status:VALID,
-
PACKAGE: APPS.PV_SQL_UTILITY
12.2.2
-
PACKAGE: APPS.PV_SQL_UTILITY
12.1.1
-
TABLE: WSH.WSH_ITM_PARTIES
12.2.2
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_ITM_PARTIES, object_name:WSH_ITM_PARTIES, status:VALID,
-
PACKAGE BODY: APPS.PV_SQL_UTILITY
12.2.2
-
PACKAGE BODY: APPS.PV_SQL_UTILITY
12.1.1
-
APPS.ONT_ITM_PKG SQL Statements
12.1.1
-
APPS.WSH_ITM_PARTY_SYNC SQL Statements
12.1.1
-
APPS.ONT_ITM_PKG SQL Statements
12.2.2
-
APPS.WSH_ITM_PARTY_SYNC SQL Statements
12.2.2
-
PACKAGE BODY: APPS.WSH_ITM_PARTY_SYNC
12.1.1
-
PACKAGE BODY: APPS.ONT_ITM_PKG
12.1.1
-
PACKAGE BODY: APPS.WSH_ITM_PARTY_SYNC
12.2.2
-
PACKAGE BODY: APPS.ONT_ITM_PKG
12.2.2
-
eTRM - CSI Tables and Views
12.2.2
description: Temporary table that holds the unprocessed XNP messages during data correction process. ,
-
eTRM - CSI Tables and Views
12.1.1
description: Temporary table that holds the unprocessed XNP messages during data correction process. ,
-
eTRM - WSH Tables and Views
12.1.1
description: Stores hierarchy for zones. Each region component of a zone has a record in this table. ,
-
eTRM - WSH Tables and Views
12.2.2
description: Stores hierarchy for zones. Each region component of a zone has a record in this table. ,
-
eTRM - CS Tables and Views
12.1.1
description: Table to store web conference details for an SR. ,
-
eTRM - CS Tables and Views
12.2.2