Search Results edi_location
Overview
APPS.ARFV_LOCATIONS is a Business Intelligence System (BIS) view in the Oracle E-Business Suite APPS schema. It exposes customer and site address information maintained in the Oracle Receivables and Oracle Trading Community Architecture (TCA) model in a flattened, reporting-friendly form. The view is registered under FND Design Data object AR.ARFV_LOCATIONS and carries a status of VALID in both EBS 12.1.1 and 12.2.2. Its purpose is to provide a denormalized projection of location data — customer name, operating unit, territory, and the physical address elements — so that reports, extracts, and integrations can retrieve address detail without navigating the normalized TCA entity relationships directly.
The view is particularly relevant to searches for street_address: the STREET_ADDRESS column is a core member of the projection and is the primary attribute through which postal addresses are surfaced. The ARFV prefix denotes the Receivables family of views, indicating that the view belongs to the Oracle Receivables reporting layer rather than to the transactional base tables themselves.
Underlying Base Objects
The view is defined over the following documented base objects, listed in the ETRM dependency metadata. All are referenced as APPS synonyms except FND_TERRITORIES_VL, which is itself a view:
- HZ_LOCATIONS — the TCA table that stores the raw address attributes (street address, city, state, postal code, province, country).
- HZ_PARTY_SITES and HZ_LOC_ASSIGNMENTS — link party sites to locations and to the owning party.
- HZ_CUST_ACCOUNTS and HZ_CUST_ACCT_SITES — supply the customer account and account-site relationship, including the primary bill-to designation.
- HZ_PARTIES — provides the customer name associated with the account.
- HR_ALL_ORGANIZATION_UNITS — supplies the operating unit to which the record belongs.
- FND_TERRITORIES_VL — supplies territory validation and description information.
- RA_TERRITORIES — the Receivables territories table, used for territory name and territory identifiers.
The ETRM metadata records that APPS.ARFV_LOCATIONS is not referenced by any database object; it functions purely as a read-only reporting projection and consumes the objects above without serving as a dependency for other views or packages.
Key Columns
- STREET_ADDRESS (VARCHAR2, 963) — the free-form street address line(s), the principal target of address-oriented queries.
- ADDRESS_ID (NUMBER, 15) — the location identifier joining back to HZ_LOCATIONS.
- CITY, STATE, POSTAL_CODE, PROVINCE, COUNTRY — the remaining postal address components; COUNTRY is the longest of these at 80 characters.
- CUSTOMER_NAME (VARCHAR2, 50) and CUSTOMER_ID — the party name and identifier owning the site.
- OPERATING_UNIT (VARCHAR2, 240) and ORG_ID — the organization unit context, which is essential for multi-org reporting.
- TERRITORY_NAME and TERROTORY_ID — the Receivables territory; note the documented spelling of the ID column as TERROTORY_ID.
- LOCATION_ID — the party-site location reference.
- EDI_LOCATION and ORIGINAL_SYSTEM_REFERENCE — EDI and legacy-source identifiers for integration scenarios.
- _LA:STATUS and _LA:PRIMARY_BILL_TO_FLAG — BI-system descriptive/flag columns indicating site status and primary bill-to designation.
- Audit columns — LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY.
Common Use Cases and Queries
Typical uses include customer address extracts for mailing or EDI, month-end billing-address verification, territory-to-address reconciliation, and operational reports filtered by operating unit. Because the view already exposes STREET_ADDRESS alongside CUSTOMER_NAME and OPERATING_UNIT, it removes the need for multi-table joins across the TCA entity model.
SELECT ADDRESS_ID,
CUSTOMER_NAME,
STREET_ADDRESS,
CITY,
STATE,
POSTAL_CODE,
COUNTRY,
OPERATING_UNIT
FROM APPS.ARFV_LOCATIONS
WHERE ORG_ID = :p_org_id
AND UPPER(STREET_ADDRESS) LIKE UPPER('%Main%');
A second pattern identifies primary bill-to sites for a given customer, using the documented flag column:
SELECT CUSTOMER_ID,
CUSTOMER_NAME,
STREET_ADDRESS,
CITY,
POSTAL_CODE
FROM APPS.ARFV_LOCATIONS
WHERE CUSTOMER_ID = :p_customer_id
AND "_LA:PRIMARY_BILL_TO_FLAG" = 'Y';
Because column names such as _LA:STATUS and _LA:PRIMARY_BILL_TO_FLAG contain special characters, they must be referenced with double quotation marks, as shown. Queries should generally be restricted by ORG_ID or CUSTOMER_ID, since the view spans all operating units and customers and can return very large result sets.
-
VIEW: APPS.ARFV_LOCATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_LOCATIONS, object_name:ARFV_LOCATIONS, status:VALID,
-
VIEW: APPS.ARBV_LOCATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARBV_LOCATIONS, object_name:ARBV_LOCATIONS, status:VALID,
-
VIEW: APPS.ARFV_LOCATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_LOCATIONS, object_name:ARFV_LOCATIONS, status:VALID,
-
View: AR_BILL_TO_ADDRESSES_ACTIVE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BILL_TO_ADDRESSES_ACTIVE_V, object_name:AR_BILL_TO_ADDRESSES_ACTIVE_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_BILL_TO_ADDRESSES_ACTIVE_V ,
-
View: AR_SHIP_TO_ADDRESSES_ACTIVE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_SHIP_TO_ADDRESSES_ACTIVE_V, object_name:AR_SHIP_TO_ADDRESSES_ACTIVE_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_SHIP_TO_ADDRESSES_ACTIVE_V ,
-
View: AR_SHIP_TO_ADDRESSES_ACTIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_SHIP_TO_ADDRESSES_ACTIVE_V, object_name:AR_SHIP_TO_ADDRESSES_ACTIVE_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_SHIP_TO_ADDRESSES_ACTIVE_V ,
-
VIEW: APPS.ARBV_LOCATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARBV_LOCATIONS, object_name:ARBV_LOCATIONS, status:VALID,
-
View: AR_BILL_TO_ADDRESSES_ACTIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BILL_TO_ADDRESSES_ACTIVE_V, object_name:AR_BILL_TO_ADDRESSES_ACTIVE_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_BILL_TO_ADDRESSES_ACTIVE_V ,
-
View: AR_REMIT_TO_ADDRESSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_REMIT_TO_ADDRESSES_V, object_name:AR_REMIT_TO_ADDRESSES_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_REMIT_TO_ADDRESSES_V ,
-
VIEW: APPS.AR_SHIP_TO_ADDRESSES_ACTIVE_V
12.2.2
-
View: AR_REMIT_TO_ADDRESSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_REMIT_TO_ADDRESSES_V, object_name:AR_REMIT_TO_ADDRESSES_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_REMIT_TO_ADDRESSES_V ,
-
VIEW: APPS.AR_BILL_TO_ADDRESSES_ACTIVE_V
12.1.1
-
VIEW: APPS.AR_BILL_TO_ADDRESSES_ACTIVE_V
12.2.2
-
VIEW: APPS.AR_SHIP_TO_ADDRESSES_ACTIVE_V
12.1.1
-
View: AR_ADDRESSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_ADDRESSES_V, object_name:AR_ADDRESSES_V, status:VALID, product: AR - Receivables , description: This view is used in the customer form address block , implementation_dba_data: APPS.AR_ADDRESSES_V ,
-
View: AR_ADDRESSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_ADDRESSES_V, object_name:AR_ADDRESSES_V, status:VALID, product: AR - Receivables , description: This view is used in the customer form address block , implementation_dba_data: APPS.AR_ADDRESSES_V ,
-
VIEW: APPS.AR_REMIT_TO_ADDRESSES_V
12.1.1
-
View: ARBV_LOCATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARBV_LOCATIONS, object_name:ARBV_LOCATIONS, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.ARBV_LOCATIONS ,
-
VIEW: APPS.AR_SHIP_TO_ADDRESSES_ACTIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_SHIP_TO_ADDRESSES_ACTIVE_V, object_name:AR_SHIP_TO_ADDRESSES_ACTIVE_V, status:VALID,
-
VIEW: APPS.AR_BILL_TO_ADDRESSES_ACTIVE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BILL_TO_ADDRESSES_ACTIVE_V, object_name:AR_BILL_TO_ADDRESSES_ACTIVE_V, status:VALID,
-
VIEW: APPS.AR_SHIP_TO_ADDRESSES_ACTIVE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_SHIP_TO_ADDRESSES_ACTIVE_V, object_name:AR_SHIP_TO_ADDRESSES_ACTIVE_V, status:VALID,
-
VIEW: APPS.AR_REMIT_TO_ADDRESSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_REMIT_TO_ADDRESSES_V, object_name:AR_REMIT_TO_ADDRESSES_V, status:VALID,
-
VIEW: APPS.AR_REMIT_TO_ADDRESSES_V
12.2.2
-
VIEW: APPS.AR_REMIT_TO_ADDRESSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_REMIT_TO_ADDRESSES_V, object_name:AR_REMIT_TO_ADDRESSES_V, status:VALID,
-
View: ARBV_LOCATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARBV_LOCATIONS, object_name:ARBV_LOCATIONS, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.ARBV_LOCATIONS ,
-
VIEW: APPS.AR_BILL_TO_ADDRESSES_ACTIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_BILL_TO_ADDRESSES_ACTIVE_V, object_name:AR_BILL_TO_ADDRESSES_ACTIVE_V, status:VALID,
-
VIEW: APPS.AR_ADDRESSES_V
12.2.2
-
View: ARFV_LOCATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_LOCATIONS, object_name:ARFV_LOCATIONS, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.ARFV_LOCATIONS ,
-
VIEW: APPS.AR_ADDRESSES_V
12.1.1
-
View: ARFV_LOCATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_LOCATIONS, object_name:ARFV_LOCATIONS, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.ARFV_LOCATIONS ,
-
VIEW: APPS.AR_ADDRESSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_ADDRESSES_V, object_name:AR_ADDRESSES_V, status:VALID,
-
VIEW: APPS.AR_ADDRESSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_ADDRESSES_V, object_name:AR_ADDRESSES_V, status:VALID,
-
PACKAGE BODY: APPS.OE_XML_PROCESS_UTIL
12.2.2
-
PACKAGE BODY: APPS.OE_XML_PROCESS_UTIL
12.1.1
-
APPS.OE_XML_PROCESS_UTIL dependencies on FND_MESSAGE
12.2.2
-
APPS.OE_XML_PROCESS_UTIL dependencies on FND_MESSAGE
12.1.1
-
APPS.OE_XML_PROCESS_UTIL dependencies on OE_MSG_PUB
12.1.1
-
APPS.OE_XML_PROCESS_UTIL dependencies on OE_MSG_PUB
12.2.2
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,