\r\n \r\n\"That really is from our company's perspective. The center point of our strategy and interconnected retail isn't a tangential distraction, we are convinced that this is the future,\" said Kevin Hofmann, SVO and president of online for Home Depot at the Goldman Sachs Dotcommerce Conference. \"So when you peel back the cover of a Home Depot store and you dissect the businesses inside that store, not a single business isn't heavily impacted and influenced either by consumers doing research and shopping upfront before they hit the physical location – or in some cases they're actually going to shop and browse and transact online.\" \r\n \r\nThe retailer is faced with the reality that customers are doing a lot of price checking and inventory lookup to make the physical shopping experience more convenient. Each year this becomes more evident – and more of a challenge – and increasingly consumers are shopping and browsing more online and using that to be a preview to their physical shopping event. \r\n \r\nLooking at the supply chain that Home Depot has built-out over the past several years, the retailer has been able to resolve several issues, including the challenge of ship-to-home transactions. \"You got to solve the last mile delivery issue, and we learned so much over the last few years around what levers we can pull and what existing assets we can leverage to improve the economics,\" noted Hofmann. \r\n \r\nLeveraging the new supply chain is more than 50 different distribution centers, rapid deployment centers, stocking distribution centers and bulk distribution centers, all moving mass quantities of products. The economics of getting the product to the customer is challenging for everybody, but one would argue that Home Depot is setup to leverage the buying power and then scale in the point of distribution, which very few retailers are capable of. \r\n \r\n\"About 35% of all of our online orders, for example, get filled out of our store locations. Leveraging that core supply chain, leveraging those little working warehouses that exist today and it's already an existing investment,\" Hofmann said. \"So increasingly we're getting smarter about what levers we pull, about how we leverage all of the assets, the physical assets and the virtual assets to fine tune the economics.\" \r\n \r\nWith the launch of direct-to-consumer shipping, the online business has grown by more than $900 million last year – about 53% growth last year in the first quarter. There has been nearly 40% growth on top of that. To better accommodate the need to service the parcel shipments across the country, the retailer built new direct-to-consumer distribution facilities. \r\n \r\n\"We just opened our first one, it’s a one million square-foot facility in south Atlanta,\" commented Hofmann. \"We have two more under construction now and really this will allow us to continue to build onto the existing Home Depot supply chain, and any products we chose to stock in those new distribution centers, will be able to service 90% of the country within two days.\""}]}};
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);
}
})();
Home Depot Builds Out Supply Chain for Two Day DTC Delivery
Home Depot Builds Out Supply Chain for Two Day DTC Delivery
Nicole Giannopoulos
6/10/2014
As online evolves and e-commerce grows, Home Depot's vision of interconnected retail continues to morph. The retailer is leveraging its brick-and-mortar presence, blended with its virtual assets to better optimize the new technology and new shopping behaviors.
"That really is from our company's perspective. The center point of our strategy and interconnected retail isn't a tangential distraction, we are convinced that this is the future," said Kevin Hofmann, SVO and president of online for Home Depot at the Goldman Sachs Dotcommerce Conference. "So when you peel back the cover of a Home Depot store and you dissect the businesses inside that store, not a single business isn't heavily impacted and influenced either by consumers doing research and shopping upfront before they hit the physical location – or in some cases they're actually going to shop and browse and transact online."
The retailer is faced with the reality that customers are doing a lot of price checking and inventory lookup to make the physical shopping experience more convenient. Each year this becomes more evident – and more of a challenge – and increasingly consumers are shopping and browsing more online and using that to be a preview to their physical shopping event.
Looking at the supply chain that Home Depot has built-out over the past several years, the retailer has been able to resolve several issues, including the challenge of ship-to-home transactions. "You got to solve the last mile delivery issue, and we learned so much over the last few years around what levers we can pull and what existing assets we can leverage to improve the economics," noted Hofmann.
Leveraging the new supply chain is more than 50 different distribution centers, rapid deployment centers, stocking distribution centers and bulk distribution centers, all moving mass quantities of products. The economics of getting the product to the customer is challenging for everybody, but one would argue that Home Depot is setup to leverage the buying power and then scale in the point of distribution, which very few retailers are capable of.
"About 35% of all of our online orders, for example, get filled out of our store locations. Leveraging that core supply chain, leveraging those little working warehouses that exist today and it's already an existing investment," Hofmann said. "So increasingly we're getting smarter about what levers we pull, about how we leverage all of the assets, the physical assets and the virtual assets to fine tune the economics."
With the launch of direct-to-consumer shipping, the online business has grown by more than $900 million last year – about 53% growth last year in the first quarter. There has been nearly 40% growth on top of that. To better accommodate the need to service the parcel shipments across the country, the retailer built new direct-to-consumer distribution facilities.
"We just opened our first one, it’s a one million square-foot facility in south Atlanta," commented Hofmann. "We have two more under construction now and really this will allow us to continue to build onto the existing Home Depot supply chain, and any products we chose to stock in those new distribution centers, will be able to service 90% of the country within two days."