Created 2017-06-13
There are a couple of reasons to track substitutes for inventory items:
The first reason to track an item substitute is to offer customers a higher valued product at a different price point. For example, you may have a steel plated widget. For $n more, a customer could get a bronze plated widget and for another $n more, a customer could get a gold plated widget. Obviously, you’ll need to make the case to the customer that the gold plated widget provides them with more value than the bronze and the bronze plated widget provides more value than the steel plated widget.
In the opportunity scenario, all three items are available at the same time. They may be items in stock or they may be ordered as needed, but the main point is the value to the customer is not necessarily availability.
A second reason for offering an item substitute is to provide your customers with an alternative in the event that their primary choice is not available. For example, you may have a yellow widget, a green widget, and the wildly popular chartreuse widget. In our example, all widgets are the same price. A customer requests a green widget but you’re out of stock. At this point, there are three options:
In your inventory, it may be more important for some items to have an alternative than others. Some items are a type of “magnet” product. That is, when the customer purchases this item, they are likely to purchase other items, often of less value. For example, if a customer would like a carton of paper, they may also purchase paper clips and staples. The carton of paper is a magnet product as it “attracts” other items. If you’re out of paper, it may be more likely that the customer will not purchase the paper clips and staples and instead go to another store and purchase them all together. If you’re out of paper clips, the customer may still purchase the paper and staples.
On the other hand, if a customer is purchasing paper clips, they may not be looking for a carton of paper. Paper clips, in this example, is not a magnet product.
For this reason, it is more important to have item substitutions for your magnet items. You certainly can also have substitutions for non-magnet items but the since the potential revenue lost is greater for a magnet item, that’s a good place to start.
Storing item substitutes is a very similar process to creating a bill of materials (BOM). Like the BOM, the substitute table is a join table between an item self-join. One way to express the data model is this:
ITEM ——< SUBSTITUTE >—- ITEM
where the ITEM table is one and the same entity and simply duplicated to show the relationship. The trick, then is to figure out what to call the foreign key. As mentioned in the BOM article in the “What’s in a Name” section, we can’t have two itemID fields:
ITEM::ID = SUBSTITUTE::itemID SUBSTITUTE::itemID = itemID
So we have a need for two itemID fields in the SUBSTITUTE table and, of course, each field must have a unique name. I use itemID and itemIDInfo, but there are many options (again, refer to the BOM article for some name alternatives and data model graphs.
For the section on alternative substitutions, I drew upon the writings of Edward Frazelle and his book Inventory Strategy
As mentioned above, the substation table is very similar to the BOM table. So much so, that you could use one table to for both purposes. You’ll need to have a “type” field to indicate whether this is a BOM or a substitution. And obviously, you would want to name the table with a generic name like RELATEDITEM:
RELATEDITEM::ID RELATEDITEM::itemID RELATEDITEM::itemIDInfo RELATEDITEM::type
Doing this would likely reduce the number of table occurrences on your graph. However, it would also increase the query and/or filter criteria whenever you want to find a particular BOM or substitution.
#FMIR