Search Results ship_to_location
Overview
HRFV_GB_LOCATIONS is an Oracle E-Business Suite business view template owned by the APPS schema and defined within the PER (Human Resources) product module. It is the flexfield view template from which the runtime flexfield view for United Kingdom (GB) locations is generated. The view consolidates location, address, and site-usage attributes from the HR locations data model, presenting a denormalized business view suitable for reporting, integration, and inquiry via Oracle EBS Forms, Oracle Discoverer, OBIEE, and other reporting tools. All objects are standard Oracle Applications synonyms and views, and the object is VALID in the dictionary under both 12.1.1 and 12.2.2.
The view is especially significant to users who search for "ship_to_location." The column SHIP_TO_LOCATION is exposed directly from the location record via the aliased table HR_LOCATIONS_ALL_TL (LOC2T), in addition to the surrogate key SHIP_TO_LOCATION_ID. The related descriptive flexfield, SHIP_TO_LOCATION_FLAG, is derived from LOC.SHIP_TO_SITE_FLAG translated through HR_LOOKUPS using the YES_NO lookup type, providing the human-readable Yes/No value for whether the location is enabled as a ship-to site.
Underlying Base Objects
The documented base objects referenced by HRFV_GB_LOCATIONS are:
- HR_LOCATIONS_ALL (SYNONYM) — master location record, supplying address, telephone, inactive date, tax name, and site flags.
- HR_LOCATIONS_ALL_TL (SYNONYM) — translation table providing the location code/name and description; joined twice (LOCT for the primary location and LOC2T for the ship-to location).
- HR_ALL_ORGANIZATION_UNITS_TL (SYNONYM) — business group and inventory organization descriptions (BGRT, ORGT).
- PER_PEOPLE_X (VIEW) — provides the designated receiver's full name through PEO.FULL_NAME.
- HR_BIS, HR_GENERAL, HR_PERSON_NAME, HR_SECURITY (PACKAGES) — supporting packages for business group security, person name formatting, and the "_LA:" lookup translation placeholders used by flexfield view generation.
The joins anchor on LOCATION_ID between HR_LOCATIONS_ALL and HR_LOCATIONS_ALL_TL, foreign-keyed with the (+) outer-join operator to the business group and organization translation rows, and filtered by USERENV('LANG') to return the appropriate language.
Key Columns
- BUSINESS_GROUP_NAME, INVENTORY_ORGANIZATION — organizational context for the location.
- LOCATION_NAME, LOCATION_DESCRIPTION — the location code and description from the translation table.
- ADDRESS_LINE_1/2/3, CITY, COUNTRY, POSTAL_CODE, ADDRESS_STYLE — address elements.
- TELEPHONE_NUMBER_1/2/3 — contact numbers.
- SHIP_TO_LOCATION — the ship-to location code, exposed via LOC2T.LOCATION_CODE and the key SHIP_TO_LOCATION_ID.
- SHIP_TO_LOCATION_FLAG, BILL_TO_SITE_FLAG, INTERNAL_SITE_FLAG, RECEIVING_SITE_FLAG, OFFICE_SITE_FLAG — HR_LOOKUPS-decoded Yes/No usage indicators.
- DEFAULT_TAX_CODE, DESIGNATED_RECEIVER, INACTIVE_DATE, COUNTY — tax, receiver, status, and GB county (REGION_1) values.
Common Use Cases and Queries
A frequent requirement is identifying all locations configured as ship-to sites, for example when populating or validating a ship-to list in an order-to-cash or procurement integration.
SELECT location_name,
ship_to_location,
ship_to_location_flag,
city,
country,
postal_code
FROM apps.hrfv_gb_locations
WHERE ship_to_location_flag = 'Yes'
AND inactive_date IS NULL;
Users may also join the view to HR_OPERATING_UNITS or inventory organizations to reconcile ship-to locations with inventory setups, or filter by business group to respect HR_SECURITY access. All queries must be executed against the APPS schema or through a synonym with appropriate privileges, since the view relies on HR security packages and language environment settings.
-
View: HRFV_GB_LOCATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_GB_LOCATIONS, object_name:HRFV_GB_LOCATIONS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_GB_LOCATIONS ,
-
View: HRFV_LOCATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_LOCATIONS, object_name:HRFV_LOCATIONS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_LOCATIONS ,
-
View: HRFV_GB_LOCATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_GB_LOCATIONS, object_name:HRFV_GB_LOCATIONS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_GB_LOCATIONS ,
-
View: HRFV_LOCATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_LOCATIONS, object_name:HRFV_LOCATIONS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_LOCATIONS ,
-
View: HRFV_US_LOCATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_US_LOCATIONS, object_name:HRFV_US_LOCATIONS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_US_LOCATIONS ,
-
View: HRFV_US_LOCATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_US_LOCATIONS, object_name:HRFV_US_LOCATIONS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_US_LOCATIONS ,
-
View: HR_LOCATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_LOCATIONS_V, object_name:HR_LOCATIONS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.HR_LOCATIONS_V ,
-
View: HR_LOCATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_LOCATIONS_V, object_name:HR_LOCATIONS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.HR_LOCATIONS_V ,