Search Results bill_to_site_flag
Overview
APPS.PO_LOCATIONS_VAL_V is an Oracle E-Business Suite validation view that exposes active location and address information used across Purchasing and related modules. In EBS 12.1.1 and 12.2.2, the view is owned by the APPS schema and is defined over HR_LOCATIONS, applying a date-based filter to return only records that are currently valid. Its purpose is to present a curated, validated subset of HR location data for list-of-values, address defaulting, and reporting consumers that require ship-to, bill-to, receiving, and office site designations.
The view is closely associated with the "ship_to_site_flag" attribute, which indicates whether a given HR location is enabled as a ship-to site for purchasing and receiving transactions. This makes the view a common reference point when validating supplier sites, purchase order ship-to addresses, and receiving destinations.
Underlying Base Objects
Per the documented ETRM metadata, PO_LOCATIONS_VAL_V is defined over HR_LOCATIONS (VIEW) and references the HR_GENERAL (PACKAGE). The view text is a straightforward projection:
- SELECT of location, address, and site-designation columns from HR_LOCATIONS
- WHERE SYSDATE < NVL(INACTIVE_DATE, SYSDATE+1), which excludes any location whose INACTIVE_DATE has passed or is today
- HR_GENERAL is a supporting package used elsewhere in the HR locations and address validation framework rather than a direct driving table
Because the view sits directly on HR_LOCATIONS, it inherits that object's row population and any underlying location classification logic maintained through HR location setup.
Key Columns
- LOCATION_ID — Primary identifier for the HR location record.
- LOCATION_CODE — Short code used to reference the location.
- DESCRIPTION — Free-text description of the location.
- SHIP_TO_SITE_FLAG — Indicates whether the location is enabled as a ship-to site; central to the "ship_to_site_flag" search.
- BILL_TO_SITE_FLAG — Indicates whether the location may be used as a bill-to site.
- RECEIVING_SITE_FLAG — Indicates eligibility as a receiving site.
- OFFICE_SITE_FLAG — Indicates whether the location is designated as an office site.
- IN_ORGANIZATION_FLAG — Indicates whether the location is associated with an inventory organization.
- SHIP_TO_LOCATION_ID — The ship-to location reference, distinct from the primary LOCATION_ID.
- INVENTORY_ORGANIZATION_ID — The inventory organization tied to the location, where applicable.
- TAX_NAME, DESIGNATED_RECEIVER_ID — Tax and receiver configuration attributes.
- Address columns — ADDRESS_LINE_1 through ADDRESS_LINE_3, POSTAL_CODE, REGION_1 through REGION_3, TOWN_OR_CITY, COUNTRY, and TELEPHONE_NUMBER_1 through TELEPHONE_NUMBER_3 provide the formatted address and contact detail.
Common Use Cases and Queries
The view is typically queried when a report or interface must return only locations that are active and properly characterized for purchasing and shipping. A common pattern filters on the ship-to designation:
- SELECT location_id, location_code, description, ship_to_location_id FROM apps.po_locations_val_v WHERE ship_to_site_flag = 'Y';
- SELECT location_id, address_line_1, town_or_city, postal_code FROM apps.po_locations_val_v WHERE receiving_site_flag = 'Y' AND inventory_organization_id = :p_org_id;
- SELECT location_code, NVL(ship_to_site_flag,'N') FROM apps.po_locations_val_v ORDER BY location_code;
Report writers joining the view to suppliers or purchase orders use LOCATION_ID or SHIP_TO_LOCATION_ID as the join key, ensuring that only currently active locations are returned. Because inactive locations are automatically excluded, the view is well suited for validation lists without additional date filtering.
-
VIEW: APPS.PO_LOCATIONS_VAL_V
12.1.1
-
View: PO_LOCATIONS_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LOCATIONS_VAL_V, object_name:PO_LOCATIONS_VAL_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_LOCATIONS_VAL_V ,
-
VIEW: APPS.PO_LOCATIONS_VAL_V
12.2.2
-
VIEW: APPS.ICX_HR_LOCATIONS_V
12.2.2
-
APPS.PO_LINE_LOCATIONS_SV1 SQL Statements
12.2.2
-
VIEW: APPS.ICX_HR_LOCATIONS_V
12.1.1
-
View: PO_LOCATIONS_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LOCATIONS_VAL_V, object_name:PO_LOCATIONS_VAL_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_LOCATIONS_VAL_V ,
-
VIEW: APPS.AP_SHIP_BILL_TO_LOCATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_SHIP_BILL_TO_LOCATIONS_V, object_name:AP_SHIP_BILL_TO_LOCATIONS_V, status:VALID,
-
VIEW: APPS.AP_SHIP_BILL_TO_LOCATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_SHIP_BILL_TO_LOCATIONS_V, object_name:AP_SHIP_BILL_TO_LOCATIONS_V, status:VALID,
-
View: ICX_HR_LOCATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_HR_LOCATIONS_V, object_name:ICX_HR_LOCATIONS_V, status:VALID, product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: APPS.ICX_HR_LOCATIONS_V ,
-
View: ICX_HR_LOCATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_HR_LOCATIONS_V, object_name:ICX_HR_LOCATIONS_V, status:VALID, product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: APPS.ICX_HR_LOCATIONS_V ,
-
VIEW: APPS.HR_LOCATIONS_ALL_PO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_LOCATIONS_ALL_PO_V, object_name:HR_LOCATIONS_ALL_PO_V, status:VALID,
-
VIEW: APPS.HR_LOCATIONS_ALL_PO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_LOCATIONS_ALL_PO_V, object_name:HR_LOCATIONS_ALL_PO_V, status:VALID,
-
VIEW: HR.HR_LOCATIONS_ALL#
12.2.2
-
APPS.PO_LINE_LOCATIONS_SV1 SQL Statements
12.1.1
-
VIEW: APPS.PO_LOCATIONS_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LOCATIONS_VAL_V, object_name:PO_LOCATIONS_VAL_V, status:VALID,
-
VIEW: APPS.PO_LOCATIONS_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LOCATIONS_VAL_V, object_name:PO_LOCATIONS_VAL_V, status:VALID,
-
VIEW: APPS.HR_LOCATIONS_NO_JOIN
12.1.1
-
APPS.HR_LOC_SHD SQL Statements
12.1.1
-
VIEW: APPS.HR_LOCATIONS_NO_JOIN
12.2.2
-
View: HR_LOCATIONS_NO_JOIN
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_LOCATIONS_NO_JOIN, object_name:HR_LOCATIONS_NO_JOIN, status:VALID, product: PER - Human Resources , description: USed to support user interface. , implementation_dba_data: APPS.HR_LOCATIONS_NO_JOIN ,
-
PACKAGE: APPS.PON_ADD_UTIL_PKG
12.1.1
-
PACKAGE: APPS.PON_ADD_UTIL_PKG
12.2.2
-
VIEW: APPS.HRFV_LOCATIONS
12.2.2
-
VIEW: APPS.HRFV_GB_LOCATIONS
12.2.2
-
View: PO_HR_LOCATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HR_LOCATIONS, object_name:PO_HR_LOCATIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_HR_LOCATIONS ,
-
VIEW: APPS.HRFV_LOCATIONS
12.1.1
-
VIEW: APPS.HRFV_GB_LOCATIONS
12.1.1
-
View: HR_LOCATIONS_ALL_PO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_LOCATIONS_ALL_PO_V, object_name:HR_LOCATIONS_ALL_PO_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.HR_LOCATIONS_ALL_PO_V ,
-
View: HR_LOCATIONS_ALL_PO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_LOCATIONS_ALL_PO_V, object_name:HR_LOCATIONS_ALL_PO_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.HR_LOCATIONS_ALL_PO_V ,
-
View: HR_LOCATIONS_NO_JOIN
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_LOCATIONS_NO_JOIN, object_name:HR_LOCATIONS_NO_JOIN, status:VALID, product: PER - Human Resources , description: USed to support user interface. , implementation_dba_data: APPS.HR_LOCATIONS_NO_JOIN ,
-
View: AP_SHIP_BILL_TO_LOCATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_SHIP_BILL_TO_LOCATIONS_V, object_name:AP_SHIP_BILL_TO_LOCATIONS_V, status:VALID, product: AP - Payables , implementation_dba_data: APPS.AP_SHIP_BILL_TO_LOCATIONS_V ,
-
VIEW: APPS.ICX_HR_LOCATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_HR_LOCATIONS_V, object_name:ICX_HR_LOCATIONS_V, status:VALID,
-
VIEW: APPS.HRFV_US_LOCATIONS
12.1.1
-
VIEW: APPS.PO_HR_LOCATIONS
12.2.2
-
View: AP_SHIP_BILL_TO_LOCATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_SHIP_BILL_TO_LOCATIONS_V, object_name:AP_SHIP_BILL_TO_LOCATIONS_V, status:VALID, product: AP - Payables , implementation_dba_data: APPS.AP_SHIP_BILL_TO_LOCATIONS_V ,
-
APPS.HR_LOC_SHD SQL Statements
12.2.2
-
VIEW: APPS.PO_HR_LOCATIONS
12.1.1
-
View: HR_DM_EXP_HR_LOC_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DM_EXP_HR_LOC_ALL_V, object_name:HR_DM_EXP_HR_LOC_ALL_V, status:VALID, product: PER - Human Resources , description: View to export hr_locations_all , implementation_dba_data: APPS.HR_DM_EXP_HR_LOC_ALL_V ,
-
VIEW: APPS.ICX_HR_LOCATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_HR_LOCATIONS_V, object_name:ICX_HR_LOCATIONS_V, status:VALID,
-
View: HR_DM_EXP_HR_LOC_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DM_EXP_HR_LOC_ALL_V, object_name:HR_DM_EXP_HR_LOC_ALL_V, status:VALID, product: PER - Human Resources , description: View to export hr_locations_all , implementation_dba_data: APPS.HR_DM_EXP_HR_LOC_ALL_V ,
-
View: PO_HR_LOCATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HR_LOCATIONS, object_name:PO_HR_LOCATIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_HR_LOCATIONS ,
-
VIEW: APPS.HRFV_US_LOCATIONS
12.2.2
-
VIEW: APPS.HRBV_LOCATION
12.2.2
-
VIEW: APPS.HR_DM_EXP_HR_LOC_ALL_V
12.1.1
-
VIEW: APPS.HR_DM_EXP_HR_LOC_ALL_V
12.2.2
-
VIEW: APPS.PO_HR_LOCATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_HR_LOCATIONS, object_name:PO_HR_LOCATIONS, status:VALID,
-
VIEW: APPS.HRBV_LOCATION
12.1.1
-
VIEW: APPS.HRBV_LOCATION
12.1.1
owner:APPS, object_type:VIEW, object_name:HRBV_LOCATION, status:VALID,
-
VIEW: APPS.HRBV_LOCATION
12.2.2
owner:APPS, object_type:VIEW, object_name:HRBV_LOCATION, status:VALID,