Search Results hz_party_site
Overview
The view APPS.CS_SR_INCIDENT_ADDRESS_V is a service-oriented database view used within Oracle E-Business Suite Release 12.1.1 and 12.2.2. It presents consolidated address and party information associated with incidents and service requests handled through the TeleService and Service Request Manager modules. The view assembles a human-readable address string alongside location, party, and party site identifiers, providing a denormalized presentation layer over the TCA (Trading Community Architecture) model. It is intended for incident-related reporting and integration, allowing developers and report authors to retrieve address details without directly navigating the multi-table relationships of the HZ schema. The view also normalizes the distinction between a standalone location and a party site by returning a location type code that indicates which identifier applies.
Underlying Base Objects
The view is defined over three primary TCA tables referenced through APPS synonyms: HZ_LOCATIONS, HZ_PARTY_SITES, and HZ_PARTIES. The documented metadata also lists HZ_CONTACT_POINTS as a referenced base object synonym, which reflects the broader dependency footprint of the service request address model. The joins are implemented as outer joins, with the party site, location, and party status filters all applied with the (+) operator so that location records are retained even when no active party site or party is present. The relationship chain is location to party site via location_id, and party site to party via party_id, with active status ('A') enforced on both party sites and parties. The view therefore returns one row per location, enriched with party site and party context where it exists.
Key Columns
- address — A concatenated address line built from address1 through address4, with lines 2 to 4 separated by semicolons when present; a DECODE suppresses separators for null components.
- city, state, province, postal_code, county, country — Standard location attributes sourced from HZ_LOCATIONS.
- location_id — A DECODE that returns the party_site_id when available, otherwise the underlying location_id. This makes the column a unified identifier for either a party site or a raw location.
- location_type_code — A DECODE returning 'HZ_PARTY_SITE' when a party_site_id exists, or 'HZ_LOCATION' when it does not. This discriminator tells the consumer how to interpret location_id.
- party_id, party_name, party_type — Party identity attributes from HZ_PARTIES, populated only when an active party site and party are linked.
Common Use Cases and Queries
This view is typically used to display and validate incident addresses, to resolve the party or party site behind a service request location, and to produce address listings for customer service reporting. A representative query retrieves all active party site addresses for a given party:
SELECT location_id, location_type_code, address, city, state, postal_code, party_name FROM apps.cs_sr_incident_address_v WHERE party_id = :p_party_id ORDER BY city;SELECT location_id, address, party_name FROM apps.cs_sr_incident_address_v WHERE location_type_code = 'HZ_PARTY_SITE' AND postal_code = :p_zip;SELECT party_type, COUNT(*) FROM apps.cs_sr_incident_address_v GROUP BY party_type;
Because the view relies on outer joins, consumers should test for null party_id and party_name values, which indicate a location not currently linked to an active party site or party. Queries against the concatenated address column are best suited to display rather than exact-match filtering, since formatting characters are embedded in the string.
-
APPS.CSM_SR_EVENT_PKG SQL Statements
12.1.1
-
APPS.CSM_SR_EVENT_PKG SQL Statements
12.2.2
-
VIEW: APPS.CS_SR_INCIDENT_ADDRESS_V
12.1.1
-
APPS.CSM_TASK_ASSIGNMENT_EVENT_PKG SQL Statements
12.1.1
-
VIEW: APPS.CS_SR_FIND_INCIDENT_ADDRESS_V
12.2.2
-
APPS.CSM_TASK_ASSIGNMENT_EVENT_PKG SQL Statements
12.2.2
-
Lookup Type: ZX_PARTY_SITE_SOURCE
12.1.1
product: ZX - E-Business Tax , meaning: ZX_PARTY_SITE_SOURCE ,
-
VIEW: APPS.CS_SR_INCIDENT_ADDRESS_V
12.2.2
-
Lookup Type: ZX_PARTY_SITE_SOURCE
12.2.2
product: ZX - E-Business Tax , meaning: ZX_PARTY_SITE_SOURCE ,
-
View: CS_SR_INCIDENT_ADDRESS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_INCIDENT_ADDRESS_V, object_name:CS_SR_INCIDENT_ADDRESS_V, status:VALID, product: CS - Service , description: This view has the address of the contacts for a service request. , implementation_dba_data: APPS.CS_SR_INCIDENT_ADDRESS_V ,
-
View: 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, product: CS - Service , description: This view has the address of the contacts for a service request. , implementation_dba_data: APPS.CS_SR_INCIDENT_ADDRESS_V ,
-
APPS.CSM_SERVICE_REQUESTS_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.CSM_SERVICE_REQUESTS_PKG
12.2.2
-
APPS.CSM_PARTY_SITE_EVENT_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.CSM_SR_EVENT_PKG
12.1.1
-
VIEW: APPS.CS_SR_SEARCH_NO_CONT_V
12.2.2
-
PACKAGE BODY: APPS.CSM_SR_EVENT_PKG
12.2.2
-
APPS.CSM_NOTIFICATION_EVENT_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.CSM_TASK_ASSIGNMENT_EVENT_PKG
12.2.2
-
PACKAGE BODY: APPS.CSM_TASK_ASSIGNMENT_EVENT_PKG
12.1.1
-
APPS.CS_SR_PARTY_MERGE_PKG SQL Statements
12.1.1
-
APPS.CS_SR_PARTY_MERGE_PKG SQL Statements
12.2.2
-
APPS.CS_SR_DUP_CHK_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.CSM_SERVICE_REQUESTS_PKG
12.1.1
-
APPS.CS_SR_DUP_CHK_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.CSM_PARTY_SITE_EVENT_PKG
12.2.2
-
PACKAGE BODY: APPS.CSM_NOTIFICATION_EVENT_PKG
12.2.2
-
APPS.IBU_REQ_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.CUG_WF_EMAIL_UTIL
12.2.2
-
PACKAGE BODY: APPS.CUG_WF_EMAIL_UTIL
12.1.1
-
APPS.IBU_REQ_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.CS_TZ_GET_DETAILS_PVT
12.1.1
-
PACKAGE BODY: APPS.CS_ASSIGN_RESOURCE_CON_PKG
12.2.2
-
PACKAGE BODY: APPS.CS_ASSIGN_RESOURCE_PKG
12.2.2
-
PACKAGE BODY: APPS.CS_SR_DUP_CHK_PVT
12.1.1
-
PACKAGE BODY: APPS.CS_TZ_GET_DETAILS_PVT
12.2.2
-
APPS.CS_PARTYMERGE_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.CS_SR_DUP_CHK_PVT
12.2.2
-
APPS.CS_PARTYMERGE_PKG SQL Statements
12.1.1
-
APPS.CSM_SR_EVENT_PKG dependencies on HZ_PARTY_SITES
12.1.1
-
APPS.CSM_SR_EVENT_PKG dependencies on HZ_PARTY_SITES
12.2.2
-
APPS.CSM_SERVICE_REQUESTS_PKG dependencies on HZ_PARTY_SITES
12.2.2
-
APPS.CSM_SR_EVENT_PKG dependencies on HZ_LOCATIONS
12.1.1
-
APPS.CSM_SR_EVENT_PKG dependencies on HZ_LOCATIONS
12.2.2
-
APPS.CSM_NOTIFICATION_EVENT_PKG dependencies on HZ_LOCATIONS
12.2.2
-
PACKAGE BODY: APPS.CSF_PREVENTIVE_MAINTENANCE_PVT
12.2.2
-
PACKAGE BODY: APPS.CSF_PREVENTIVE_MAINTENANCE_PVT
12.1.1
-
APPS.CSM_SR_EVENT_PKG dependencies on CS_INCIDENTS_ALL_B
12.1.1
-
APPS.CSM_NOTIFICATION_EVENT_PKG dependencies on HZ_PARTY_SITES
12.2.2
-
APPS.CSM_SR_EVENT_PKG dependencies on CS_INCIDENTS_ALL_B
12.2.2