Search Results address_effective_date
Overview
AST_LOCATIONS_V is an APPS-owned database view in the Oracle E-Business Suite, belonging to the AST — TeleSales product family. It presents a consolidated, reporting-friendly projection of party site and location address data by joining Oracle Trading Community Architecture (TCA) entities with territory and timezone reference data. The view is registered as VALID in the EBS data dictionary and is available in both 12.1.1 and 12.2.2 environments.
Its principal role is to expose a single flattened row for each active or inactive party site, combining the site-level record from HZ_PARTY_SITES with its postal address from HZ_LOCATIONS. This design spares downstream reports, concurrent programs, and integrations from having to reassemble the same multi-table join themselves. The most frequently searched column, ADDRESS_EFFECTIVE_DATE, is sourced directly from HZ_LOCATIONS and indicates the date from which the stored address is considered effective.
Underlying Base Objects
The documented view metadata identifies the following referenced base objects, all accessed through APPS synonyms:
- HZ_PARTY_SITES — supplies the site record, status, party identifiers, mailstop, attributes, and site-level audit columns.
- HZ_LOCATIONS — supplies the postal address components, address effective and expiration dates, address style, and location-level audit columns.
- FND_TERRITORIES_TL — supplies the translated territory short name used to derive the country name; joined with an outer (+) operator.
- FND_TIMEZONES_B and FND_TIMEZONES_VL — supply timezone name and upgrade timezone identifier, joined with an outer (+) operator.
The join predicate ties SITE.LOCATION_ID to LOC.LOCATION_ID, resolves the country code against FND_TERRITORIES_TL with the session language (USERENV('LANG')), and links the timezone through TM.UPGRADE_TZ_ID = LOC.TIMEZONE_ID. Only party sites whose STATUS is 'A' (active) or 'I' (inactive) qualify for inclusion.
Key Columns
The view exposes a broad column set. The following are the most significant for reporting and integration:
- ROW_ID, PARTY_ID, PARTY_SITE_ID, PARTY_SITE_NUMBER — identifiers linking the row back to the party and its site.
- LOCATION_ID — the primary key of the underlying HZ_LOCATIONS record; the principal join key to other address-aware views.
- STATUS — party site status; values are limited to 'A' or 'I' by the view definition.
- ADDRESS1 through ADDRESS4, CITY, STATE, PROVINCE, POSTAL_CODE, COUNTY, COUNTRY_CODE, COUNTRY_NAME — the standard postal address attributes.
- ADDRESS_EFFECTIVE_DATE and ADDRESS_EXPIRATION_DATE — the validity window of the location address, both sourced from HZ_LOCATIONS.
- ADDRESS_STYLE, ADDRESS_LINES_PHONETIC, PO_BOX_NUMBER, HOUSE_NUMBER, STREET, STREET_NUMBER, STREET_SUFFIX, FLOOR, SUITE, POSTAL_PLUS4_CODE — formatting and structured-address elements used in country-specific styles.
- START_DATE_ACTIVE and END_DATE_ACTIVE — the site-level activation window, distinct from the address effective dates.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE20 — the DFF-enabled descriptive flexfield columns carried from HZ_PARTY_SITES.
- Audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) and OBJECT_VERSION_NUMBER, APPLICATION_ID, CREATED_BY_MODULE for both site and location.
Common Use Cases and Queries
Typical uses include TeleSales address verification, customer-facing correspondence, data migration reconciliation, and ad-hoc address extracts. A query filtered on the effective date is the most common pattern:
SELECT party_site_number, address1, city, state, postal_code, address_effective_date, address_expiration_date FROM apps.ast_locations_v WHERE address_effective_date >= :p_from_date AND status = 'A';
Because the view already resolves the country name and timezone, it is frequently used to produce mailing labels or export files without additional lookups:
SELECT party_id, party_site_id, address1, address2, city, country_name, timezone FROM apps.ast_locations_v WHERE country_code = 'US' AND status = 'A' ORDER BY postal_code;
Integrations that synchronize address data to external systems generally key on LOCATION_ID and compare ADDRESS_EFFECTIVE_DATE against a stored watermark to identify changed records. When translating the view into a report, note that the outer joins to territory and timezone can return nulls for unrecognized country codes, and that inactive sites are returned unless the query explicitly restricts STATUS.
-
View: AST_LOCATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LOCATIONS_V, object_name:AST_LOCATIONS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LOCATIONS_V ,
-
View: AST_LOCATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LOCATIONS_V, object_name:AST_LOCATIONS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LOCATIONS_V ,
-
View: AST_LM_PER_EXPAND_W_ACC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_PER_EXPAND_W_ACC_V, object_name:AST_LM_PER_EXPAND_W_ACC_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_PER_EXPAND_W_ACC_V ,
-
View: AST_LM_PER_EXPAND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_PER_EXPAND_V, object_name:AST_LM_PER_EXPAND_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_PER_EXPAND_V ,
-
View: AST_LM_PER_EXPAND_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_PER_EXPAND_ALL_V, object_name:AST_LM_PER_EXPAND_ALL_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_PER_EXPAND_ALL_V ,
-
View: AST_LM_PER_EXPAND_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_PER_EXPAND_ALL_V, object_name:AST_LM_PER_EXPAND_ALL_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_PER_EXPAND_ALL_V ,
-
View: AST_LM_PER_EXPAND_W_ACC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_PER_EXPAND_W_ACC_V, object_name:AST_LM_PER_EXPAND_W_ACC_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_PER_EXPAND_W_ACC_V ,
-
View: AST_LM_PER_EXPAND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_PER_EXPAND_V, object_name:AST_LM_PER_EXPAND_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_PER_EXPAND_V ,
-
View: AST_LM_ORG_EXPAND_W_ACC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_ORG_EXPAND_W_ACC_V, object_name:AST_LM_ORG_EXPAND_W_ACC_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_ORG_EXPAND_W_ACC_V ,
-
View: AST_LM_ORG_EXPAND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_ORG_EXPAND_V, object_name:AST_LM_ORG_EXPAND_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_ORG_EXPAND_V ,
-
View: AST_LM_ORG_EXPAND_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_ORG_EXPAND_ALL_V, object_name:AST_LM_ORG_EXPAND_ALL_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_ORG_EXPAND_ALL_V ,
-
View: AST_LM_ORG_EXPAND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_ORG_EXPAND_V, object_name:AST_LM_ORG_EXPAND_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_ORG_EXPAND_V ,
-
View: AST_LM_ORG_EXPAND_W_ACC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_ORG_EXPAND_W_ACC_V, object_name:AST_LM_ORG_EXPAND_W_ACC_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_ORG_EXPAND_W_ACC_V ,
-
View: AST_LM_ORG_EXPAND_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_ORG_EXPAND_ALL_V, object_name:AST_LM_ORG_EXPAND_ALL_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_ORG_EXPAND_ALL_V ,
-
View: AST_LM_REL_EXPAND_W_ACC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_REL_EXPAND_W_ACC_V, object_name:AST_LM_REL_EXPAND_W_ACC_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_REL_EXPAND_W_ACC_V ,
-
View: AST_LM_REL_EXPAND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_REL_EXPAND_V, object_name:AST_LM_REL_EXPAND_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_REL_EXPAND_V ,
-
View: AST_LM_REL_EXPAND_W_ACC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_REL_EXPAND_W_ACC_V, object_name:AST_LM_REL_EXPAND_W_ACC_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_REL_EXPAND_W_ACC_V ,
-
View: AST_LM_REL_EXPAND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_REL_EXPAND_V, object_name:AST_LM_REL_EXPAND_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_REL_EXPAND_V ,
-
View: AST_LM_REL_EXPAND_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_REL_EXPAND_ALL_V, object_name:AST_LM_REL_EXPAND_ALL_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_REL_EXPAND_ALL_V ,
-
View: AST_LM_REL_EXPAND_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_LM_REL_EXPAND_ALL_V, object_name:AST_LM_REL_EXPAND_ALL_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_LM_REL_EXPAND_ALL_V ,