Search Results site_status
Overview
APPS.CSD_PARTY_SITES_V is a reporting and integration view in Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 that consolidates party site information with its associated site uses and location address details. It is owned by the APPS schema and is a denormalized, read-only projection that joins the core Trading Community Architecture (TCA) tables. The view presents one row per combination of party site, site use, and location, thereby exposing the full contextual picture of a party's physical or logical address together with its purpose (site use type) and current status.
Because party sites underpin many downstream modules — including Order Management, Receivables, Payables, Shipping, and Contracts — this view is frequently used in custom reports, concurrent programs, and interface extracts. The user query term "site_status" maps directly to the SITE_STATUS column derived from HZ_PARTY_SITES.STATUS, and to the related SITE_USE_STATUS column derived from HZ_PARTY_SITE_USES.STATUS.
Underlying Base Objects
The view is defined over three documented base objects, all referenced through APPS synonyms:
- HZ_PARTY_SITES (aliased A) — the driving table, joined on PARTY_SITE_ID.
- HZ_PARTY_SITE_USES (aliased B) — joined with an outer join (B.PARTY_SITE_ID(+)) on PARTY_SITE_ID, allowing party sites without a site use to still be returned.
- HZ_LOCATIONS (aliased C) — inner-joined to HZ_PARTY_SITES on LOCATION_ID, supplying the address components.
The outer join on HZ_PARTY_SITE_USES means rows can appear with NULL SITE_USE_STATUS, SITE_USE_TYPE, and related site-use columns when no active use record exists. Both master-detail relationships are anchored on PARTY_SITE_ID and LOCATION_ID respectively.
Key Columns
- PARTY_ID, PARTY_SITE_ID, LOCATION_ID, PARTY_SITE_USE_ID — primary identifiers linking to the TCA entity model.
- PARTY_SITE_NUMBER, PARTY_SITE_NAME — human-readable site identifiers.
- SITE_STATUS — status of the party site itself (from HZ_PARTY_SITES.STATUS); values typically include 'A' (active) and 'I' (inactive).
- SITE_USE_STATUS — status of the site use (from HZ_PARTY_SITE_USES.STATUS).
- SITE_USE_TYPE — the purpose of the site, such as 'BILL_TO', 'SHIP_TO', 'OU', or 'RS'.
- PRIMARY_PER_TYPE — flag indicating the primary site use for a given type.
- IDENTIFYING_ADDRESS_FLAG — indicates whether the location is the identifying address for the party.
- COUNTRY, ADDRESS1–ADDRESS4, CITY, STATE, PROVINCE, COUNTY, POSTAL_CODE, POSTAL_PLUS4_CODE — address attributes from HZ_LOCATIONS.
- VALIDATED_FLAG, ADDRESS_STYLE, ADDRESS_EFFECTIVE_DATE, ADDRESS_EXPIRATION_DATE — address validation and lifecycle metadata.
- ORIG_SYSTEM_REFERENCE, MAILSTOP, ATTRIBUTE1–ATTRIBUTE20 — descriptive flexfield and legacy cross-reference columns.
- ROW_ID, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, REQUEST_ID, PROGRAM_ID — standard WHO/audit columns.
Common Use Cases and Queries
A frequent requirement is to list active party sites with their address and primary site use. The following query retrieves active bill-to or ship-to records:
SELECT party_site_id, party_site_number, party_site_name, site_status, site_use_status, site_use_type, primary_per_type, address1, city, state, postal_code FROM apps.csd_party_sites_v WHERE site_status = 'A' AND site_use_status = 'A' AND site_use_type IN ('BILL_TO','SHIP_TO');- Determine parties lacking any site use, exploiting the outer join:
SELECT party_id, party_site_id, party_site_name FROM apps.csd_party_sites_v WHERE site_use_type IS NULL; - Identify identifying addresses:
SELECT * FROM apps.csd_party_sites_v WHERE identifying_address_flag = 'Y'; - Extract active sites by country for integration feeds: filter on COUNTRY and SITE_STATUS and join PARTY_ID back to HZ_PARTIES for party name and party type.
Because the view is a straight join of TCA base tables, it should not be updated directly; site status and site use status changes must be applied to the underlying tables through the TCA APIs or the standard Oracle forms. Indexed access is best driven by PARTY_ID, PARTY_SITE_ID, or LOCATION_ID to avoid full scans on large HZ_PARTY_SITES volumes.
-
VIEW: APPS.CSD_PARTY_SITES_V
12.2.2
-
VIEW: APPS.CSD_PARTY_SITES_V
12.1.1
-
View: OE_CUST_SITE_PHONE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUST_SITE_PHONE_V, object_name:OE_CUST_SITE_PHONE_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_CUST_SITE_PHONE_V ,
-
View: CSD_PARTY_SITES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_PARTY_SITES_V, object_name:CSD_PARTY_SITES_V, status:VALID, product: CSD - Depot Repair , implementation_dba_data: APPS.CSD_PARTY_SITES_V ,
-
VIEW: APPS.OE_CUSTOMER_ADDRESSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUSTOMER_ADDRESSES_V, object_name:OE_CUSTOMER_ADDRESSES_V, status:VALID,
-
VIEW: APPS.IEX_CUST_SITE_USES_V
12.2.2
-
VIEW: APPS.OE_CUSTOMER_ADDRESSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUSTOMER_ADDRESSES_V, object_name:OE_CUSTOMER_ADDRESSES_V, status:VALID,
-
VIEW: APPS.CS_SR_INCIDENT_ADDRESS_V
12.2.2
-
View: CSD_PARTY_SITES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_PARTY_SITES_V, object_name:CSD_PARTY_SITES_V, status:VALID, product: CSD - Depot Repair , implementation_dba_data: APPS.CSD_PARTY_SITES_V ,
-
VIEW: APPS.IEX_CUST_SITE_USES_V
12.1.1
-
VIEW: APPS.IEX_CUST_SITE_USES_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_CUST_SITE_USES_V, status:VALID,
-
VIEW: APPS.IEX_CUST_SITE_USES_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_CUST_SITE_USES_V, status:VALID,
-
VIEW: APPS.OE_CUSTOMER_SITE_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUSTOMER_SITE_CONTACTS_V, object_name:OE_CUSTOMER_SITE_CONTACTS_V, status:VALID,
-
VIEW: APPS.OE_CUSTOMER_SITE_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUSTOMER_SITE_CONTACTS_V, object_name:OE_CUSTOMER_SITE_CONTACTS_V, status:VALID,
-
VIEW: APPS.CS_SR_INCIDENT_ADDRESS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_INCIDENT_ADDRESS_V, object_name:CS_SR_INCIDENT_ADDRESS_V, status:VALID,
-
VIEW: APPS.OE_CUST_SITE_PHONE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUST_SITE_PHONE_V, object_name:OE_CUST_SITE_PHONE_V, status:VALID,
-
View: OE_CUST_SITE_PHONE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUST_SITE_PHONE_V, object_name:OE_CUST_SITE_PHONE_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_CUST_SITE_PHONE_V ,
-
VIEW: APPS.CSC_ALL_HZ_PARTIES_INFO_V
12.2.2
-
VIEW: APPS.CSC_ALL_HZ_PARTIES_CONT_INFO_V
12.2.2
-
VIEW: APPS.OE_CUST_SITE_PHONE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUST_SITE_PHONE_V, object_name:OE_CUST_SITE_PHONE_V, status:VALID,
-
VIEW: APPS.OE_CUST_SITE_PHONE_V
12.2.2
-
View: OE_CUSTOMER_ADDRESSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUSTOMER_ADDRESSES_V, object_name:OE_CUSTOMER_ADDRESSES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_CUSTOMER_ADDRESSES_V ,
-
View: OE_CUSTOMER_ADDRESSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUSTOMER_ADDRESSES_V, object_name:OE_CUSTOMER_ADDRESSES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_CUSTOMER_ADDRESSES_V ,
-
View: OE_CUSTOMER_SITE_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUSTOMER_SITE_CONTACTS_V, object_name:OE_CUSTOMER_SITE_CONTACTS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_CUSTOMER_SITE_CONTACTS_V ,
-
VIEW: APPS.OE_CUST_SITE_PHONE_V
12.1.1
-
View: OE_CUSTOMER_SITE_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUSTOMER_SITE_CONTACTS_V, object_name:OE_CUSTOMER_SITE_CONTACTS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_CUSTOMER_SITE_CONTACTS_V ,
-
VIEW: APPS.CSD_PARTY_SITES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_PARTY_SITES_V, object_name:CSD_PARTY_SITES_V, status:VALID,
-
VIEW: APPS.OE_CUSTOMER_SITE_CONTACTS_V
12.2.2
-
VIEW: APPS.OE_CUSTOMER_SITE_CONTACTS_V
12.1.1
-
VIEW: APPS.CSC_ALL_HZ_PARTIES_INFO_V
12.2.2
owner:APPS, object_type:VIEW, object_name:CSC_ALL_HZ_PARTIES_INFO_V, status:VALID,
-
VIEW: APPS.CSC_ALL_HZ_PARTIES_REL_V
12.2.2
-
VIEW: APPS.CSD_PARTY_SITES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_PARTY_SITES_V, object_name:CSD_PARTY_SITES_V, status:VALID,
-
VIEW: APPS.RA_CUSTOMER_TRX_PARTIAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_PARTIAL_V, object_name:RA_CUSTOMER_TRX_PARTIAL_V, status:VALID,
-
VIEW: APPS.RA_CUSTOMER_TRX_PART_CB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_PART_CB_V, object_name:RA_CUSTOMER_TRX_PART_CB_V, status:VALID,
-
VIEW: APPS.RA_CUSTOMER_TRX_PARTIAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_PARTIAL_V, object_name:RA_CUSTOMER_TRX_PARTIAL_V, status:VALID,
-
VIEW: APPS.RA_CUSTOMER_TRX_PART_CB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_PART_CB_V, object_name:RA_CUSTOMER_TRX_PART_CB_V, status:VALID,
-
VIEW: APPS.CSC_ALL_HZ_PARTIES_CONT_INFO_V
12.2.2
owner:APPS, object_type:VIEW, object_name:CSC_ALL_HZ_PARTIES_CONT_INFO_V, status:VALID,
-
VIEW: APPS.CSC_ALL_HZ_PARTIES_REL_V
12.2.2
owner:APPS, object_type:VIEW, object_name:CSC_ALL_HZ_PARTIES_REL_V, status:VALID,
-
View: RA_CUSTOMER_TRX_PARTIAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_PARTIAL_V, object_name:RA_CUSTOMER_TRX_PARTIAL_V, status:VALID, product: AR - Receivables , description: (Release 115 Only) , implementation_dba_data: APPS.RA_CUSTOMER_TRX_PARTIAL_V ,
-
View: RA_CUSTOMER_TRX_PARTIAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_PARTIAL_V, object_name:RA_CUSTOMER_TRX_PARTIAL_V, status:VALID, product: AR - Receivables , description: (Release 115 Only) , implementation_dba_data: APPS.RA_CUSTOMER_TRX_PARTIAL_V ,
-
View: RA_CUSTOMER_TRX_PART_CB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_PART_CB_V, object_name:RA_CUSTOMER_TRX_PART_CB_V, status:VALID, product: AR - Receivables , description: (Release 115 Only) , implementation_dba_data: APPS.RA_CUSTOMER_TRX_PART_CB_V ,
-
View: RA_CUSTOMER_TRX_PART_CB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_PART_CB_V, object_name:RA_CUSTOMER_TRX_PART_CB_V, status:VALID, product: AR - Receivables , description: (Release 115 Only) , implementation_dba_data: APPS.RA_CUSTOMER_TRX_PART_CB_V ,
-
APPS.OKS_QA_DATA_INTEGRITY SQL Statements
12.1.1
-
APPS.OKS_QA_DATA_INTEGRITY SQL Statements
12.2.2
-
APPS.OKS_QA_DATA_INTEGRITY dependencies on HZ_CUST_ACCT_SITES_ALL
12.1.1
-
APPS.OKS_QA_DATA_INTEGRITY dependencies on HZ_CUST_ACCT_SITES_ALL
12.2.2
-
APPS.OKS_QA_DATA_INTEGRITY dependencies on HZ_CUST_SITE_USES_ALL
12.1.1
-
APPS.OKS_QA_DATA_INTEGRITY dependencies on HZ_CUST_SITE_USES_ALL
12.2.2
-
APPS.OKS_QA_DATA_INTEGRITY dependencies on OKC_K_LINES_B
12.2.2
-
APPS.OKS_QA_DATA_INTEGRITY dependencies on OKC_K_LINES_B
12.1.1