The 2011 Cross-Channel Executive Summit (CCRES) event brought more than 100 retailers, analysts and technology vendors together to the Four Seasons Troon North Resort on September 28-30 for three days of high-level networking and information gathering. \r\n \r\nHighlights from the summit include: \r\n \r\nAn opening keynote speech by Mike Relich, CIO for Guess, a multi-brand, multi-channel tier-one retail operation that is doing some advanced things with Facebook and social media data. \r\n \r\nMelissa Chin, chief information security officer for VF Corp., who explained that while it was not possible to completely lock down the mobile channel for m-commerce, new security tools to help are evolving rapidly. \r\n \r\nNikki Baird, managing partner for RSR Research, did double duty as both the moderator of an eye-opening panel featuring Gen Y students and alumni from the University of Arizona, and as the chief research analyst exploring findings from the 2011 RIS/RSR Cross Channel Tech Trends Study. \r\n \r\nTodd Michaud, vice president of IT for Focus Brands, who explored best practices in using social media for personalized marketing. \r\n \r\nAnd four retailers were honored with 2011 RIS Fusion Awards for executing high-performance initiatives that successfully fused IT and business strategies: Chico’s FAS and Starbucks in the Cross-Channel Innovation category (tied), Urban Outfitters for Cross-Channel Customer Experience and Von Maur for Cross-Channel SMB. \r\n \r\nOne interesting element this year was an invitation-only, closed-door pre-event session attended by 20 retailers who gathered to discuss the need for retail solutions providers to become more customer-centric to their retail clients and partner with them to adapt to fast-moving omni-channel shifts. The session’s goal was to create a Digital Directives Manifesto. There’s more information at www.digitaldirectives.org \r\n \r\n\r\nScenes from CCRES 2011: From top: Kenneth Silay (left), director, store technology, accepts the 2011 RIS Cross-Channel Innovation Fusion Award for Chico’s FAS from RIS Group Editor-in-Chief Joe Skorupa; Lisa Ferguson, senior functional analyst, accepts Starbucks Coffee’s Innovation Fusion Award from RIS Publisher Dave Weinand; Demo Lymberopoulos, executive director of operations, Anthropologie, accepts the Customer Experience Fusion Award for sister company Urban Outfitters; and Wayne Varilek, director of IT at Von Maur, accepts the SMB Fusion Award. At bottom, Millennials’ shopping secrets were revealed during the Cross-Generational Consumer Panel, with a focus group that included students from the Terry J. Lundgren Center for Retailing at the University of Arizona and University of Arizona alumni. "}]}};
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);
}
})();
The 2011 Cross-Channel Executive Summit (CCRES) event brought more than 100 retailers, analysts and technology vendors together to the Four Seasons Troon North Resort on September 28-30 for three days of high-level networking and information gathering.
Highlights from the summit include:
An opening keynote speech by Mike Relich, CIO for Guess, a multi-brand, multi-channel tier-one retail operation that is doing some advanced things with Facebook and social media data.
Melissa Chin, chief information security officer for VF Corp., who explained that while it was not possible to completely lock down the mobile channel for m-commerce, new security tools to help are evolving rapidly.
Nikki Baird, managing partner for RSR Research, did double duty as both the moderator of an eye-opening panel featuring Gen Y students and alumni from the University of Arizona, and as the chief research analyst exploring findings from the 2011 RIS/RSR Cross Channel Tech Trends Study.
Todd Michaud, vice president of IT for Focus Brands, who explored best practices in using social media for personalized marketing.
And four retailers were honored with 2011 RIS Fusion Awards for executing high-performance initiatives that successfully fused IT and business strategies: Chico’s FAS and Starbucks in the Cross-Channel Innovation category (tied), Urban Outfitters for Cross-Channel Customer Experience and Von Maur for Cross-Channel SMB.
One interesting element this year was an invitation-only, closed-door pre-event session attended by 20 retailers who gathered to discuss the need for retail solutions providers to become more customer-centric to their retail clients and partner with them to adapt to fast-moving omni-channel shifts. The session’s goal was to create a Digital Directives Manifesto. There’s more information at www.digitaldirectives.org
Scenes from CCRES 2011: From top: Kenneth Silay (left), director, store technology, accepts the 2011 RIS Cross-Channel Innovation Fusion Award for Chico’s FAS from RIS Group Editor-in-Chief Joe Skorupa; Lisa Ferguson, senior functional analyst, accepts Starbucks Coffee’s Innovation Fusion Award from RIS Publisher Dave Weinand; Demo Lymberopoulos, executive director of operations, Anthropologie, accepts the Customer Experience Fusion Award for sister company Urban Outfitters; and Wayne Varilek, director of IT at Von Maur, accepts the SMB Fusion Award. At bottom, Millennials’ shopping secrets were revealed during the Cross-Generational Consumer Panel, with a focus group that included students from the Terry J. Lundgren Center for Retailing at the University of Arizona and University of Arizona alumni.