\r\n \r\n\"E-commerce sales were up over 200% from the third quarter of 2009,\" said Lululemon Athletica CEO Christine Day during a recent conference call discussing the company's financial results. \"We improved our inventory position to support sales in the back half of the third quarter, which allowed e-commerce to jump closer to a natural level for this early stage business. And since our site carries and sells a larger mix of technical product and has proportionately fewer markdowns than do our stores, e-commerce also added to our gross margin and operating margin in the quarter. \r\n \r\n\"We believe that we are just scratching the surface in e-commerce and that a level of 10% of sales is achievable in the short to medium term,\" Day added. \r\n \r\nThe yoga-inspired athletic apparel company had a strong third quarter overall, with net revenue increasing 56% to $175.8 million, up from $112.9 million in Q3 of 2009. Comparable store sales increased 29%. E-commerce sales increased by $9.2 million during the quarter, which ended October 31. Revenues from the entire direct-to-consumer channel (which includes both online and phone sales) totaled $14 million or 7.9% of total revenue, compared to $4.6 million or 4.1% of total revenue for the same period in 2009. \r\n \r\n\"The average transaction is slightly higher on e-commerce,\" compared to store transactions, according to John Currie, CFO. \"In terms of product mix, we tend to sell more of our core technical product online, I think because e-commerce people are discovering the brand and establishing their wardrobe as opposed to adding to their wardrobe.\" \r\n \r\nCurrie also explained the supply chain changes that will improve the company's in-stock positions for e-commerce. In the U.S., e-commerce had been held as separate inventory in a third-party distribution center, and as a result \"more so in Q2 than Q3 you saw stockouts online because we really couldn't shift inventory between channels very easily,\" he said. \"That will be addressed as we shift to more of an in-house e-commerce model,\" which will occur in Q1 of 2011. \"The inventory for e-commerce, although we'll buy it separately, will be held within the same DC as our inventory for store fulfillments so transfer between channels will become easier.\" \r\n \r\nThe customer-facing side of online sales will also improve with the adoption of a new e-commerce platform planned for the first quarter of 2011. The retailer is also commencing a search for an executive to head its e-commerce operations. \"We want to bring in somebody with some global experience in that position,\" said Day. \r\n \r\nCurrently, e-commerce is just one item on a busy plate for Lululemon Athletica's new CIO Kathryn Henry, who was appointed last month. Other priorities include risk management, business intelligence, and an information system for human resources. \r\n \r\n\"The other big project we have underway is our PLM [product lifecycle management] project, which is really critical to vendor management in the supply chain and really tracking everything from our fabric manufacturing forecasting base, tying that together so that we can get even more efficient in our supply chain,\" said Day."}]}};
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);
}
})();
Lululemon Athletica E-Commerce Sales Jump 200% in Third Quarter
Lululemon Athletica E-Commerce Sales Jump 200% in Third Quarter
12/12/2010
A 200% increase in Q3 e-commerce sales is only the most dramatic sign of Lululemon Athletica's seriousness about the online channel. The retailer is planning an upgrade of its e-commerce platform in the first quarter of 2011, and will be streamlining cross-channel inventory transfers to address out-of-stock issues. The company has also embarked on a search for an executive to head its e-commerce operations.
"E-commerce sales were up over 200% from the third quarter of 2009," said Lululemon Athletica CEO Christine Day during a recent conference call discussing the company's financial results. "We improved our inventory position to support sales in the back half of the third quarter, which allowed e-commerce to jump closer to a natural level for this early stage business. And since our site carries and sells a larger mix of technical product and has proportionately fewer markdowns than do our stores, e-commerce also added to our gross margin and operating margin in the quarter.
"We believe that we are just scratching the surface in e-commerce and that a level of 10% of sales is achievable in the short to medium term," Day added.
The yoga-inspired athletic apparel company had a strong third quarter overall, with net revenue increasing 56% to $175.8 million, up from $112.9 million in Q3 of 2009. Comparable store sales increased 29%. E-commerce sales increased by $9.2 million during the quarter, which ended October 31. Revenues from the entire direct-to-consumer channel (which includes both online and phone sales) totaled $14 million or 7.9% of total revenue, compared to $4.6 million or 4.1% of total revenue for the same period in 2009.
"The average transaction is slightly higher on e-commerce," compared to store transactions, according to John Currie, CFO. "In terms of product mix, we tend to sell more of our core technical product online, I think because e-commerce people are discovering the brand and establishing their wardrobe as opposed to adding to their wardrobe."
Currie also explained the supply chain changes that will improve the company's in-stock positions for e-commerce. In the U.S., e-commerce had been held as separate inventory in a third-party distribution center, and as a result "more so in Q2 than Q3 you saw stockouts online because we really couldn't shift inventory between channels very easily," he said. "That will be addressed as we shift to more of an in-house e-commerce model," which will occur in Q1 of 2011. "The inventory for e-commerce, although we'll buy it separately, will be held within the same DC as our inventory for store fulfillments so transfer between channels will become easier."
The customer-facing side of online sales will also improve with the adoption of a new e-commerce platform planned for the first quarter of 2011. The retailer is also commencing a search for an executive to head its e-commerce operations. "We want to bring in somebody with some global experience in that position," said Day.
Currently, e-commerce is just one item on a busy plate for Lululemon Athletica's new CIO Kathryn Henry, who was appointed last month. Other priorities include risk management, business intelligence, and an information system for human resources.
"The other big project we have underway is our PLM [product lifecycle management] project, which is really critical to vendor management in the supply chain and really tracking everything from our fabric manufacturing forecasting base, tying that together so that we can get even more efficient in our supply chain," said Day.