\n","showSummary":null,"url":"/hot-tech-2009","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":6163,"bundle":"basic","text":"What will the hottest retail tech be in 2009? If these new product releases are any indication, retailers heading into 2009 will see products that are time-saving, damage resistant and faster than ever before. Retailers that continue to invest in innovative technologies have the benefit of staying ahead of competitors, improving performance and achieving cost-savings. \n \nA new metal keyboard from Cherry specifically designed for the kiosk is made of vandal-proof metal, meaning the possibility of damage is greatly reduced. Another unique product hitting the retail market is the Gryphon Imager from Datalogic, which offers improved scanning performance on hard to read, damaged bar codes. Contactless pin pads also are picking up speed in retail, offering end-users the ability to easily connect to electronic cash registers and POS systems. \n \nIn 2009, retailers also will begin seeing a more widespread launch of mobile storefronts thanks to companies such as Digby. Retailers can now display their mobile catalogs on smart phones such as the Blackberry and Apple iPhone. \n \nLaser Marked Keyboard \nA vandal-proof metal keyboard for kiosks and industrial applications was recently introduced by Cherry. The 67-key J86-4400 includes an integrated, lip-sealed trackball made of a phenolic material, designed specifically to resist attempted abuse by vandals. The keyboard also features keycaps that are non-removable and laser marked, rather than printed, which helps achieve long-term resistance against wear and weather. www.cherrycorp.com \n \n\"Green Spot\" Imager \nDatalogic's Gryphon Imager reads standard 1D bar codes as well as GS1 DataBar stacked codes. The Gryphon Imager features 'Green Spot' aiming technology while providing fast reading and decoding. Newly optimized, decoding software helps improve scanning performance on hard-to-read, poorly printed and damaged bar codes. The imager reads undamaged labels within 40 milliseconds and bar codes from contact to more than one meter away. www.datalogic.com \n \n \nMobile Integration \nPowered by Digby integrates mobility into a retailer's sales and marketing without having to redesign their current offerings. Digby delivers mobile catalogs and native applications for BlackBerry, Windows Mobile, iPhone and Android. Powered by Digby extends the retailer's existing cataloging, account management and order processing systems. This mobile commerce platform also offers mobile-browser access, supports mobile promotions, multi-channel programs and coupons. www.digby.com \n \nContactless PINPad \nVeriFone introduces a contactless version of its PINPad 1000SE, which combines two payment peripherals -- PIN entry and contactless -- into one device. The PCI PED approved PINpad1000SE features USB or serial connectivity, which provides easier connection to electronic cash registers and POS devices. The PINpad 1000SE contactless version also supports non-payment applications such as MiFare. www.verifone.com \n \n \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);
}
})();
What will the hottest retail tech be in 2009? If these new product releases are any indication, retailers heading into 2009 will see products that are time-saving, damage resistant and faster than ever before. Retailers that continue to invest in innovative technologies have the benefit of staying ahead of competitors, improving performance and achieving cost-savings.
A new metal keyboard from Cherry specifically designed for the kiosk is made of vandal-proof metal, meaning the possibility of damage is greatly reduced. Another unique product hitting the retail market is the Gryphon Imager from Datalogic, which offers improved scanning performance on hard to read, damaged bar codes. Contactless pin pads also are picking up speed in retail, offering end-users the ability to easily connect to electronic cash registers and POS systems.
In 2009, retailers also will begin seeing a more widespread launch of mobile storefronts thanks to companies such as Digby. Retailers can now display their mobile catalogs on smart phones such as the Blackberry and Apple iPhone.
Laser Marked Keyboard
A vandal-proof metal keyboard for kiosks and industrial applications was recently introduced by Cherry. The 67-key J86-4400 includes an integrated, lip-sealed trackball made of a phenolic material, designed specifically to resist attempted abuse by vandals. The keyboard also features keycaps that are non-removable and laser marked, rather than printed, which helps achieve long-term resistance against wear and weather. www.cherrycorp.com
"Green Spot" Imager Datalogic's Gryphon Imager reads standard 1D bar codes as well as GS1 DataBar stacked codes. The Gryphon Imager features 'Green Spot' aiming technology while providing fast reading and decoding. Newly optimized, decoding software helps improve scanning performance on hard-to-read, poorly printed and damaged bar codes. The imager reads undamaged labels within 40 milliseconds and bar codes from contact to more than one meter away. www.datalogic.com
Mobile Integration Powered by Digby integrates mobility into a retailer's sales and marketing without having to redesign their current offerings. Digby delivers mobile catalogs and native applications for BlackBerry, Windows Mobile, iPhone and Android. Powered by Digby extends the retailer's existing cataloging, account management and order processing systems. This mobile commerce platform also offers mobile-browser access, supports mobile promotions, multi-channel programs and coupons. www.digby.com
Contactless PINPad VeriFone introduces a contactless version of its PINPad 1000SE, which combines two payment peripherals -- PIN entry and contactless -- into one device. The PCI PED approved PINpad1000SE features USB or serial connectivity, which provides easier connection to electronic cash registers and POS devices. The PINpad 1000SE contactless version also supports non-payment applications such as MiFare. www.verifone.com