\n","showSummary":null,"url":"/building-better-brand","date":"2009-01-12T00:00:00","author":{"email":"devteam@ashday.com","uname":"ash_root","firstName":null,"lastName":null,"bio":null,"title":null,"picture":null,"phone":null,"contactForm":null},"byline":"","hideByline":null,"digitalEdition":null,"sponsored":false,"sponsorship":{"overrideAds":null},"taggedPro":null,"relatedArticles":[],"teaserImage":null,"heroImageSrcset":null,"hideHero":null,"heroImage":null,"heroCaption":null,"attachedFiles":[],"businessTopic":[],"contentType":[],"company":[],"marketSegment":[],"topics":[],"contentParagraphs":{"isGated":false,"gateType":null,"gateText":null,"paragraphs":[{"id":6165,"bundle":"basic","text":"Popular Euro retailer NFI Empik Media & Fashion Group (EM&F) is a one-stop destination for media, children's goods, education, franchise fashion and perfumery. It operates more than 590 retail and service outlets across Poland, Ukraine, Russia, Kazakhstan, Czech Republic, Slovakia and Germany under the brand concepts Empik, SMYK and Empik Cafe, and has ambitious plans to continue expansion throughout Europe. \n \nIn 2007, EM&F identified it lacked effective planning and forecasting capabilities to support its expansion strategy. In response, EM&F implemented Oracle Retail planning applications to provide a unified approach to planning and forecasting and support the growth and internationalization of its business. EM&F deployed Oracle Retail within six months and has since benefited from standardizing and centralizing planning and forecasting processes. Other key benefits the retailer has achieved include improved markdown management, increased open-to-buy and lifecycle planning and the ability to make commercial decisions based on real-time data. \n \n\"Our strategy is to maintain double-digit growth over the next few years, but these expansion plans bring challenges in terms of managing our retail and service outlets,\" says Dairuz Stolarczyk, COO and director of operations and logistics, EM&F. \"The creation of a best practice approach has enabled us to build a unified view of the planning and forecasting processes at SMYK and centrally manage them.\" \n \nToday, the retailer uses Oracle Retail to manage assortments of hardline and softline categories. EM&F also uses the system to help determine inventory requirements at the item and location level, while promoting the allocation of the right quantities of products to individual SMYK stores. \n \n\"Insight into the allocation of goods is helping us improve customer satisfaction by matching appropriate stock levels to customer demand and minimizing lost sales and overstocking,\" says Stolarczyk. \"Since implementing the Oracle Retail planning applications, we've become more proactive in our approach to the management of our markdowns at SMYK. The lack of visibility to accurate and real-time data meant we were reactive in our approach, but we are now able to identify the success of particular markdown campaigns over others.\" \n \nAccording to Stolarczyk, \"planning processes can be based on several hundred indicators. If a retailer operates only a few stores, it is possible to manage this. When you're expanding to the level our business is, this no longer becomes viable. The trick is to make processes as consistent as possible and to choose a fewer number of significant indexes upon which we can make decisions. Oracle Retail has helped us revise our traditional processes and develop capabilities that support our whole business.\" \n \nIn addition to the Oracle Retail planning applications, EM&F implemented Oracle Siebel to provide business intelligence for its retail business. Within five weeks of implementation, EM&F gained valuable information and reported commercial, store and product successes. \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);
}
})();
Popular Euro retailer NFI Empik Media & Fashion Group (EM&F) is a one-stop destination for media, children's goods, education, franchise fashion and perfumery. It operates more than 590 retail and service outlets across Poland, Ukraine, Russia, Kazakhstan, Czech Republic, Slovakia and Germany under the brand concepts Empik, SMYK and Empik Cafe, and has ambitious plans to continue expansion throughout Europe.
In 2007, EM&F identified it lacked effective planning and forecasting capabilities to support its expansion strategy. In response, EM&F implemented Oracle Retail planning applications to provide a unified approach to planning and forecasting and support the growth and internationalization of its business. EM&F deployed Oracle Retail within six months and has since benefited from standardizing and centralizing planning and forecasting processes. Other key benefits the retailer has achieved include improved markdown management, increased open-to-buy and lifecycle planning and the ability to make commercial decisions based on real-time data.
"Our strategy is to maintain double-digit growth over the next few years, but these expansion plans bring challenges in terms of managing our retail and service outlets," says Dairuz Stolarczyk, COO and director of operations and logistics, EM&F. "The creation of a best practice approach has enabled us to build a unified view of the planning and forecasting processes at SMYK and centrally manage them."
Today, the retailer uses Oracle Retail to manage assortments of hardline and softline categories. EM&F also uses the system to help determine inventory requirements at the item and location level, while promoting the allocation of the right quantities of products to individual SMYK stores.
"Insight into the allocation of goods is helping us improve customer satisfaction by matching appropriate stock levels to customer demand and minimizing lost sales and overstocking," says Stolarczyk. "Since implementing the Oracle Retail planning applications, we've become more proactive in our approach to the management of our markdowns at SMYK. The lack of visibility to accurate and real-time data meant we were reactive in our approach, but we are now able to identify the success of particular markdown campaigns over others."
According to Stolarczyk, "planning processes can be based on several hundred indicators. If a retailer operates only a few stores, it is possible to manage this. When you're expanding to the level our business is, this no longer becomes viable. The trick is to make processes as consistent as possible and to choose a fewer number of significant indexes upon which we can make decisions. Oracle Retail has helped us revise our traditional processes and develop capabilities that support our whole business."
In addition to the Oracle Retail planning applications, EM&F implemented Oracle Siebel to provide business intelligence for its retail business. Within five weeks of implementation, EM&F gained valuable information and reported commercial, store and product successes.