\r\n \r\nThat's not to say that the panelists at the 2012 RIS Retail Executive Summit session titled \"What the C-Suite and Board Need to Know About IT\" don't appreciate technology. It's more that they see it as an enabling tool rather than an end in itself. \r\n \r\n\"IT's role is as a business consultant, one that improves business processes and uses technology,\" said Mike Laurenti, CIO of Belk Department Stores. \"When you see an oil drill pumping, it's important to remember that the oil is what provides the value – the drill, the technology, is just what extracts that value.\" \r\n \r\nLaurenti, one of the winners of the 2012 RIS CIO of the Year Award, is leading a multi-year IT and business transformation at the 300-store chain that includes new merchandising, POS, warehouse and order management solutions and the building of a new distribution center, among many other elements. He's well aware that success requires both technology and processes be aligned and right for the business: \"Our saying is 'BP + NT = EBP: Bad Process + New Technology = Expensive Bad Process.'\" \r\n \r\nStacey Shulman is CTO of American Apparel, not only a retailer but the world's 14th largest clothing manufacturer (and the largest in the U.S.). \"Our CEO believes technology is the way to get a business to the next level, and that every dime spent on tech goes directly to the bottom line,\" sais Shulman. Given this high-level belief in technology, \"it would be easy for us to take a lot of latitude with that, but the way we see technology in the organization is to be an internal consulting group for the business. My team has to continuously look for ways to improve the business, and their goal is to do that without making a technology change.\" \r\n \r\nThat said, Shulman noted that the IT group tends to be in the forefront of new trends, particularly social media, but mostly as it relates to expanding American Apparel's business. IT has driven initiatives on tracking conversion, tying customer loyalty into social media, augmented reality applications, the use of mobile apps to tie these elements together and customer messaging consistency. \r\n \r\nIn terms of IT's communication with corporate boards, the general rise in people's tech knowledge helps Yul Vanek, vice president of IT at Deckers Outdoor. \"In communicating with boards, it elevates the conversation from the tactical to the strategic level,\" said Vanek. Boards themselves are \"becoming increasingly accountable and engaged with senior management.\" \r\n \r\nOn the other hand, a little knowledge can be a dangerous thing. \"A board member may have heard about cloud computing on Jim Cramer's CNBC show and ask 'What are we doing with the cloud?' That's not really the conversation we want to be having, because cloud is just another delivery vehicle, another arrow in the quiver.\" \r\n \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);
}
})();
American Apparel, Belk, Deckers CIOs Discuss IT's Changing Roles
American Apparel, Belk, Deckers CIOs Discuss IT's Changing Roles
Adam Blair
6/18/2012
The old caricature of an IT executive was the guy (and it was usually a guy) getting totally carried away by the excitement of the latest piece of tech wizardry – pushing hard for the dreaded "tech for tech's sake." Even if this stereotype was once true, today it's been turned on its head. In retail, IT executives are frequently the ones moving the corporate conversation away from the latest gadget and back to the business problem that needs to be solved.
That's not to say that the panelists at the 2012 RIS Retail Executive Summit session titled "What the C-Suite and Board Need to Know About IT" don't appreciate technology. It's more that they see it as an enabling tool rather than an end in itself.
"IT's role is as a business consultant, one that improves business processes and uses technology," said Mike Laurenti, CIO of Belk Department Stores. "When you see an oil drill pumping, it's important to remember that the oil is what provides the value – the drill, the technology, is just what extracts that value."
Laurenti, one of the winners of the 2012 RIS CIO of the Year Award, is leading a multi-year IT and business transformation at the 300-store chain that includes new merchandising, POS, warehouse and order management solutions and the building of a new distribution center, among many other elements. He's well aware that success requires both technology and processes be aligned and right for the business: "Our saying is 'BP + NT = EBP: Bad Process + New Technology = Expensive Bad Process.'"
Stacey Shulman is CTO of American Apparel, not only a retailer but the world's 14th largest clothing manufacturer (and the largest in the U.S.). "Our CEO believes technology is the way to get a business to the next level, and that every dime spent on tech goes directly to the bottom line," sais Shulman. Given this high-level belief in technology, "it would be easy for us to take a lot of latitude with that, but the way we see technology in the organization is to be an internal consulting group for the business. My team has to continuously look for ways to improve the business, and their goal is to do that without making a technology change."
That said, Shulman noted that the IT group tends to be in the forefront of new trends, particularly social media, but mostly as it relates to expanding American Apparel's business. IT has driven initiatives on tracking conversion, tying customer loyalty into social media, augmented reality applications, the use of mobile apps to tie these elements together and customer messaging consistency.
In terms of IT's communication with corporate boards, the general rise in people's tech knowledge helps Yul Vanek, vice president of IT at Deckers Outdoor. "In communicating with boards, it elevates the conversation from the tactical to the strategic level," said Vanek. Boards themselves are "becoming increasingly accountable and engaged with senior management."
On the other hand, a little knowledge can be a dangerous thing. "A board member may have heard about cloud computing on Jim Cramer's CNBC show and ask 'What are we doing with the cloud?' That's not really the conversation we want to be having, because cloud is just another delivery vehicle, another arrow in the quiver."