Clearance Pricing: End-of-Life Markdown Strategies
Every product eventually reaches the end of its lifecycle. Whether it's a winter coat in April or an outdated smartphone, retailers must liquidate inventory to free up capital and shelf space. Learn how Oracle RPM separates Clearance Pricing from Regular Pricing to aggressively drive sell-through.
While a Regular Price Change is used to adjust the baseline selling price of an ongoing product, Clearance Pricing is a liquidation strategy. It signals to the organization that the item is dead. The goal is no longer to maximize margin; the goal is to convert the physical asset back into cash as quickly as possible to make room for new seasonal receipts.
Oracle Retail Price Management (RPM) and Pricing Cloud Service (PCS) treat Clearance as a distinct module with its own rules, zone groups, and conflict checking logic.
1. The Clearance Transition
Placing an item on Clearance is a major structural change in RPM. It is a one-way street.
When a Clearance event is executed:
- The item is marked as "On Clearance" at the specified locations.
- The price drops to the new clearance retail.
- The Lockout: RPM physically prevents any future Regular Price Changes from being applied to that item/location combination. You cannot raise the regular price of an item once it is in its end-of-life phase.
Resetting Clearance
If a buyer makes a mistake and places an item on clearance accidentally (the infamous "fat finger"), they cannot simply create a Regular Price Change to raise the price back. They must use a specific "Clearance Reset" function in RPM to pull the item out of the clearance lifecycle before normal pricing can resume.
2. Successive Markdowns
Clearance strategies usually follow a cadence of successive, deepening markdowns based on sell-through velocity.
- Week 1: 1st Markdown (25% Off). Target: Sell 40% of remaining stock.
- Week 4: 2nd Markdown (50% Off). Target: Sell next 40% of stock.
- Week 8: Final Markdown (75% Off). Target: Liquidate remaining 20%.
RPM allows pricing analysts to set up these successive clearances in advance. The conflict checking engine ensures that the 2nd Markdown price is strictly lower than the 1st Markdown price. RPM prohibits "Clearance Markups" (you cannot raise the price of a clearance item from $10 to $12).
3. Clearance Zone Groups
As discussed in the Price Zones guide, Clearance often utilizes entirely different Zone Groups than Regular Pricing.
Why? Because the need to liquidate is driven by local climate, demographics, or store volume.
- A retailer selling winter shovels will put them on aggressive clearance in Texas by late February.
- The exact same shovel in Maine will remain at Regular Price until late April.
By mapping the Texas stores to an early Clearance Zone, the analyst can execute the markdown for that specific cluster without touching the profitable inventory in the Northeast.
4. Core Tables Reference
(Note: These are RPM schema tables)
Clearance Header (RPM_CLEARANCE)
| Column | Type | Description |
|---|---|---|
CLEARANCE_ID | NUMBER(15) | The unique identifier. |
STATUS | VARCHAR2(1) | 'W' (Worksheet), 'A' (Approved), 'E' (Executed). |
EFFECTIVE_DATE | DATE | The date the clearance price goes live. |
MARKDOWN_NUMBER | NUMBER(2) | Tracks successive markdowns (e.g., Markdown 1, 2, 3). |
5. SQL Deep Dives
Finding Items Stuck on Clearance
When items reach their 3rd or 4th markdown and still have massive inventory on hand, the clearance strategy has failed. These items are tying up shelf space and need to be pulled off the floor (RTV or charity write-off).
6. Official Oracle Resources
For further reading, consult the official Oracle documentation:


