\r\nINTERSPORT France is boldly and successfully executing on a major initiative \r\nto enhance its profit margins and strengthen its global position in the apparel realm. \r\n \r\nRecognizing that a changing retail landscape and evolving market needs have \r\ndemonstrated escalating demand for highvalue, private-label apparel product, the \r\nFrench company, with 500 sporting goods locations in the country (including 150 ski \r\nstores) recently set a lofty goal to double the turnover of its exclusive, private-label brands \r\nover the course of the next four years. \r\n \r\nTo facilitate its ambitious objective, INTERSPORT, which offers approximately \r\n1,000 styles per season, recognized it needed a full PLM system, with ample evidence for \r\nthat technology need all around it: for instance, each team in the organization, \r\nfrom design to shipping, had its own processes that hindered its bargaining power \r\nwith suppliers. Information across the global supply chain was shared via numerous \r\nemails, spreadsheets and overnight packages. In addition, technical files lacked specificity \r\nthat contributed to a time-consuming - and costly - sample development process. \r\n \r\nNicholas Thibault, exclusive brands business unit manager, led the search process \r\nfor a PLM solution, marking the first time that technology in the company was selected \r\nfrom business-oriented personnel and not the IT department. \"To get our collections \r\ninto stores on schedule, we must have definitive samples or the entire season's \r\ndelivery schedule can be affected,\" he noted. \"Yet valuable time was being lost as we went back and forth with the suppliers, answering questions or requesting changes because we provided inconsistent information in our technical-design files.\" \r\n \r\nUltimately, the company turned to Centric Software, which specializes in PLM and \r\nsourcing solutions in the consumer goods and fashion industries, including those \r\nglobally sourcing private label. \r\n \r\nWorking together analytically and closely, Centric tailored its Centric 8 PLM solution \r\nspecifically for INTERSPORT with implementation commencing in September, \r\nshortly after selection. \"Centric's system is surprisingly easy to use and was easy to \r\nimplement.\" Thibault said. \"The feedback from our product managers and suppliers \r\nhas been very positive, and it has been extremely simple to learn and use \r\nby everyone.\" \r\n \r\nThe retailer is also realizing quantifiable results: product managers have reported a \r\n20 percent improvement of their sample development process, and a marked reduction \r\nin private-label product development time has already been realized; with \r\nfurther usage and familiarity with the software efficiency improvements and savings \r\nare expected to be attained. \r\n \r\nThibault says the company plans to implement additional modules of Centric 8 to help \r\nit reach its four-year goal. \"An on-time, onscope PLM implementation is possible,\" he \r\nadds. \"We did it with Centric.\""}]}};
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);
}
})();
Intersport France Enhancing Profits through Private Label
Intersport France Enhancing Profits through Private Label
9/14/2009
Undaunted by the challenging economic climate, sporting goods retailer
INTERSPORT France is boldly and successfully executing on a major initiative
to enhance its profit margins and strengthen its global position in the apparel realm.
Recognizing that a changing retail landscape and evolving market needs have
demonstrated escalating demand for highvalue, private-label apparel product, the
French company, with 500 sporting goods locations in the country (including 150 ski
stores) recently set a lofty goal to double the turnover of its exclusive, private-label brands
over the course of the next four years.
To facilitate its ambitious objective, INTERSPORT, which offers approximately
1,000 styles per season, recognized it needed a full PLM system, with ample evidence for
that technology need all around it: for instance, each team in the organization,
from design to shipping, had its own processes that hindered its bargaining power
with suppliers. Information across the global supply chain was shared via numerous
emails, spreadsheets and overnight packages. In addition, technical files lacked specificity
that contributed to a time-consuming - and costly - sample development process.
Nicholas Thibault, exclusive brands business unit manager, led the search process
for a PLM solution, marking the first time that technology in the company was selected
from business-oriented personnel and not the IT department. "To get our collections
into stores on schedule, we must have definitive samples or the entire season's
delivery schedule can be affected," he noted. "Yet valuable time was being lost as we went back and forth with the suppliers, answering questions or requesting changes because we provided inconsistent information in our technical-design files."
Ultimately, the company turned to Centric Software, which specializes in PLM and
sourcing solutions in the consumer goods and fashion industries, including those
globally sourcing private label.
Working together analytically and closely, Centric tailored its Centric 8 PLM solution
specifically for INTERSPORT with implementation commencing in September,
shortly after selection. "Centric's system is surprisingly easy to use and was easy to
implement." Thibault said. "The feedback from our product managers and suppliers
has been very positive, and it has been extremely simple to learn and use
by everyone."
The retailer is also realizing quantifiable results: product managers have reported a
20 percent improvement of their sample development process, and a marked reduction
in private-label product development time has already been realized; with
further usage and familiarity with the software efficiency improvements and savings
are expected to be attained.
Thibault says the company plans to implement additional modules of Centric 8 to help
it reach its four-year goal. "An on-time, onscope PLM implementation is possible," he
adds. "We did it with Centric."