Mastering the physical and logical nodes of your supply chain in Oracle Retail Merchandising System.
Introduction to Location Master
In Oracle Retail Merchandising System (RMS), every item must exist somewhere. The Location Master represents all the physical and logical nodes where inventory can be stored, transacted, or processed. Unlike the Organizational Hierarchy (which groups locations for financial and reporting purposes into Chains, Areas, Regions, and Districts), the Location Master deals with the actual attributes of the locations themselves.
The core location types in RMS are:
- Stores (
S): Brick-and-mortar retail locations or eCommerce web stores. - Warehouses (
W): Physical distribution centers holding stock. - Virtual Warehouses (
V): Logical partitions of a physical warehouse used for multi-channel inventory segregation. - Finishers (
F): External third-party locations where items are sent for processing (e.g., ticketing, hanger insertion).
Location Type Indentifiers
Whenever you see a LOC_TYPE column in RMS transaction tables (like ITEM_LOC, TRAN_DATA, INV_STATUS_QTY), it will almost always contain either 'S' (Store) or 'W' (Warehouse). Virtual warehouses are usually rolled up or represented as 'W' at the transaction level depending on system options.
Stores (STORE)
A Store in RMS is the primary selling location. A store can be a traditional physical store, a pop-up shop, a kiosk, or an eCommerce fulfillment center (often flagged as a Web Store).
When a store is created in RMS, it must be assigned to an Organizational Hierarchy (it must belong to a District, which rolls up to a Region, Area, and Chain). It is also assigned a default currency, a VAT region (if operating in a tax-inclusive environment), and a primary warehouse for replenishment.
Important Gotchas
- !
Store Open/Close Dates: The
STORE_OPEN_DATEandSTORE_CLOSE_DATEare critical. RMS batch processes use these dates to determine if a store should receive stock, be included in replenishment runs, or have its inventory cleared out. - !
Store Class: RMS allows categorizing stores via
STORE_CLASS(e.g., "Flagship", "Outlet", "Airport"). This is useful for grouping stores during pricing and promotional events.
Warehouses (WH)
A Warehouse represents a physical Distribution Center (DC). Warehouses are responsible for receiving bulk shipments from suppliers, storing inventory, and fulfilling outbound transfers to stores or other warehouses.
Unlike stores, warehouses do not belong to the standard Organizational Hierarchy (Chain/Area/Region/District). Instead, they are considered independent nodes that service the organizational hierarchy.
Virtual Warehouses (VWH)
Modern retailers operate across multiple channels (Brick & Mortar, eCommerce, Wholesale). To manage this, a single physical Distribution Center might hold stock for all channels.
Oracle RMS uses Virtual Warehouses to logically partition the inventory within a single physical warehouse.
For example, Physical Warehouse 9000 might have:
- Virtual Warehouse
9001(Retail Store Fulfillment) - Virtual Warehouse
9002(eCommerce Fulfillment) - Virtual Warehouse
9003(Wholesale Fulfillment)
Multi-Channel System Option
Virtual warehousing is only active if the MULTI_CHANNEL_IND is set to 'Y' in the SYSTEM_OPTIONS table. If disabled, every physical warehouse maps 1:1 to itself logically.
How Virtual Warehouses Work
- Inventory Segregation: Stock on Hand (SOH) is tracked at the Virtual Warehouse level in
ITEM_LOC_SOH. - Costing: WAC (Weighted Average Cost) is typically maintained at the Physical Warehouse level, but inventory quantities are split across the virtual nodes.
- Fulfillment: eCommerce orders can be hard-allocated exclusively against the eCommerce virtual warehouse (
9002), ensuring retail replenishment doesn't steal eCommerce stock.
External Finishers
Finishers are third-party locations where raw or unfinished goods are sent to be finalized before hitting the sales floor. Common finishing activities include:
- Adding security tags
- Inserting hangers
- Price ticketing
- Garment pressing
In RMS, an external finisher is technically set up as a partner (PARTNER table) with a specific partner type (e.g., 'E' for External Finisher). However, they are treated as locations when it comes to inventory transfers. You can transfer stock from a Warehouse to a Finisher, and then from the Finisher to the Stores.
Database Schema Deep Dive
Let's look at the core tables that make up the Location Master in Oracle RMS.
| Column | Type | Description |
|---|---|---|
STOREPK | NUMBER(10) | The core store header table containing store number, name, org hierarchy mapping, currency, and dates. |
WHPK | NUMBER(10) | The physical warehouse header table. |
VWHPK | NUMBER(10) | The virtual warehouse table mapping logical locations to their parent |
ADDR | VARCHAR2 | The central address table. Locations don't store their own addresses; they reference this table using |
LOC_TRAITS | NUMBER | Traits associated with a location (e.g., "Climate: Tropical", "Demographic: College Town"). |
Querying Locations and Addresses
Because addresses are stored centrally in the ADDR table, you must join based on the MODULE code. Here is a production-ready query to extract all active stores with their physical addresses and primary servicing warehouse:
Mapping Virtual to Physical Warehouses
When generating custom extracts for a WMS (Warehouse Management System), you often need to map the logical Virtual Warehouse back to the Physical Warehouse, as the WMS only cares about the physical building.
Key Takeaways
- Stores and Warehouses are the fundamental nodes for inventory in RMS.
- Virtual Warehouses are essential for multi-channel retailers to segregate inventory within a single physical DC.
- Addresses for all locations are stored centrally in the
ADDRtable using module identifiers. - External Finishers are set up as Partners but can act as inventory holding locations during processing transfers.


