\r\n \r\n\"We're operating out of one inventory pool so we can fill our direct-to-consumer orders out of our store community, and utilizing that tool for our inventory reduction,\" said Urban Outfitters Group president Ted Marlow. \"We can have the inventory in the store with a chance of sale as opposed to sitting in a DC, and leverage the total investment to the downside and I think get more productivity, and, I would hope and think, reduced markdown exposure.\" \r\n \r\nSpeaking at the Morgan Stanley Retail & Restaurant Conference, Marlow provided details on how Urban Outfitters manages the store-based fulfillment initiative that began last year. Asked about store-level incentives that might be needed to encourage store personnel to pack and ship popular items for online customers, Marlow credited a combination of payroll management and incentives. \r\n \r\n\"The store team did a very good job of creating an incentive system related to the fulfillment of orders, and the people are incented to fulfill and that can complement perhaps a downside exposure in regard to sales performance,\" said Marlow, adding that stores have quarterly bonus opportunities tied to sales performance. \"That really was the work in the first 30 to 60 days of being up and running on pack and ship.\" \r\n \r\nThe retailer also uses business rules relating to margins and the particular item as well as around shopper behavior. \"If we know a customer has been shopping sale goods online, chances are pretty good we're not going to want to fulfill that out of the stores if it doesn't happen to be in stock,\" said Marlow. \r\n \r\nUrban Outfitters is looking at other ways to maximize its total inventory investment. Marlow discussed a test at its store in Long Island, NY's Roosevelt Field mall that offered customers the ability to browse and shop the retailer's entire footwear assortment, \"which in the women's side runs up to 1,000 styles,\" he said. \"Obviously we can't carry that in a [single] store location. We created an initiative to really understand what the customer response would be if they were able to shop via iPad the total assortment in a store environment. \r\n \r\n\"That particular test is something that we want to take and utilize for other categories to be able to utilize the total inventory investment not only online, but in store,\" said Marlow. \r\n \r\nFor related content: Urban Outfitters Improves Inventory with Virtual Warehouse \r\n \r\n Urban Outfitters Invests in West Coast Fulfillment, Online, Mobile \r\n \r\n Omni-Channel Inventory, Flexible Fulfillment Boost Urban Outfitters Sales \r\n \r\n Urban Outfitters Goes the Full Mobile at the POS \r\n "}]}};
const country = "US";
const language = "en-US,en;q=0.5";
const SITE_LANGUAGE = "en";
const siteName = "RIS News";
const userRoles = ["anonymous"];
const userUid = 0;
const indexName = "risnews";
window.dataLayer = window.dataLayer || [];
const data = {};
data.entityTaxonomy = {};
const contentTypes = [
"article",
"blog",
"bulletin",
"embed_page",
"landing_page",
"event",
"image",
"page",
"product",
"whitepaper",
"video",
"tags",
];
if (
routeInfo &&
"bundle" in routeInfo &&
contentTypes.includes(routeInfo["bundle"])
) {
data.entityBundle = routeInfo.bundle;
data.entityTitle = `${routeInfo.title} | ${siteName}`;
data.entityId = routeInfo.id;
data.entityName = routeInfo.author?.uname;
data.entityCreated = routeInfo.created;
data.sponsored = routeInfo.sponsored;
data.sponsor = routeInfo.sponsoringCompany;
data.entityType = "node";
data.entityLangcode = SITE_LANGUAGE;
data.siteName = siteName;
data.drupalLanguage = language;
data.drupalCountry = country;
data.userRoles = userRoles;
data.userUid = userUid;
data.entityTaxonomyKeys = {};
data.entityTaxonomyHierarchies = {};
data.parentNaicsCode = {};
data.isPro = false;
data.algoliaIndexName = indexName;
// Add toxonomy data
const taxonomies = {
businessTopic: "business_topic",
contentType: "content_type",
company: "company",
marketSegment: "market_segment",
};
const getHierarchy = (term, terms = []) => {
terms.push({ id: term.id, name: term.name });
if (term.parentTerm != null) {
getHierarchy(term.parentTerm, terms);
}
return terms;
};
const getTerms = (term, useApiId = false) => {
return { id: useApiId ? term.apiId : term.id, name: term.name };
};
const getKeys = (term) => {
return { id: term.id, name: term.apiId };
};
Object.entries(taxonomies).forEach(([key, item]) => {
terms = routeInfo[key];
if (terms && terms.length > 0) {
data["entityTaxonomy"][item] = terms.map((term) =>
getTerms(term, key === "company")
);
if (key !== "company") {
data["entityTaxonomyKeys"][item] = terms.map(getKeys);
termGroups = [];
terms.forEach((term, termInd) => {
termGroups[termInd] = getHierarchy(term);
});
data["entityTaxonomyHierarchies"][item] = termGroups;
}
}
});
data["entityTaxonomy"]["tags"] = routeInfo["topics"] || [];
// Primary Topic is either the business topic or the top tag.
if (routeInfo["businessTopic"]?.length > 0) {
data["entityPrimaryTopic"] = routeInfo["businessTopic"][0]["name"];
} else {
if (routeInfo["topics"]?.length > 0) {
data["entityPrimaryTopic"] = routeInfo["topics"][0]["name"];
}
}
// Primary and secondary entityNaicsCodes come from the MarketSegment
if (routeInfo.marketSegment?.length > 0) {
data.entityNaicsCode = {};
data["entityNaicsCode"]["id"] = routeInfo["marketSegment"][0]["id"];
data["entityNaicsCode"]["name"] =
routeInfo["marketSegment"][0]["naicsCode"];
if (routeInfo["marketSegment"][0]["parentTerm"] != null) {
data["parentNaicsCode"]["id"] =
routeInfo["marketSegment"][0]["parentTerm"]["id"];
data["parentNaicsCode"]["name"] =
routeInfo["marketSegment"][0]["parentTerm"]["naicsCode"];
}
} else {
data.entityNaicsCode = [];
}
if (routeInfo.taggedPro) {
data.isPro = routeInfo.taggedPro;
}
window.dataLayer.push(data);
} else if (routeInfo && "vid" in routeInfo) {
data.entityBundle = "tags";
data.entityTitle = routeInfo.name;
data.entityId = routeInfo.id;
data.entityName = routeInfo.author?.uname;
data.entityCreated = routeInfo.created;
data.entityType = "taxonomy_term";
data.entityLangcode = SITE_LANGUAGE;
data.siteName = siteName;
data.sponsored = routeInfo.sponsored;
data.sponsor = routeInfo.sponsoringCompany;
data.drupalLanguage = language;
data.drupalCountry = country;
data.userRoles = userRoles;
data.userUid = userUid;
data.algoliaIndexName = indexName;
data["entityTaxonomy"]["tags"] = {
id: routeInfo["id"],
name: routeInfo["name"],
};
window.dataLayer.push(data);
}
})();
Urban Outfitters' recent move to store-based fulfillment of direct orders has been made possible by creating a single set of channel-agnostic inventory – a move that has made its overall inventory more productive and may lead to reduced markdown exposure.
"We're operating out of one inventory pool so we can fill our direct-to-consumer orders out of our store community, and utilizing that tool for our inventory reduction," said Urban Outfitters Group president Ted Marlow. "We can have the inventory in the store with a chance of sale as opposed to sitting in a DC, and leverage the total investment to the downside and I think get more productivity, and, I would hope and think, reduced markdown exposure."
Speaking at the Morgan Stanley Retail & Restaurant Conference, Marlow provided details on how Urban Outfitters manages the store-based fulfillment initiative that began last year. Asked about store-level incentives that might be needed to encourage store personnel to pack and ship popular items for online customers, Marlow credited a combination of payroll management and incentives.
"The store team did a very good job of creating an incentive system related to the fulfillment of orders, and the people are incented to fulfill and that can complement perhaps a downside exposure in regard to sales performance," said Marlow, adding that stores have quarterly bonus opportunities tied to sales performance. "That really was the work in the first 30 to 60 days of being up and running on pack and ship."
The retailer also uses business rules relating to margins and the particular item as well as around shopper behavior. "If we know a customer has been shopping sale goods online, chances are pretty good we're not going to want to fulfill that out of the stores if it doesn't happen to be in stock," said Marlow.
Urban Outfitters is looking at other ways to maximize its total inventory investment. Marlow discussed a test at its store in Long Island, NY's Roosevelt Field mall that offered customers the ability to browse and shop the retailer's entire footwear assortment, "which in the women's side runs up to 1,000 styles," he said. "Obviously we can't carry that in a [single] store location. We created an initiative to really understand what the customer response would be if they were able to shop via iPad the total assortment in a store environment.
"That particular test is something that we want to take and utilize for other categories to be able to utilize the total inventory investment not only online, but in store," said Marlow.