<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/wordpress-mu-1.0" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>ChannelAdvisor Blog</title>
	<link>http://blog.channeladvisor.com</link>
	<description>Opinions. Insights. Discoveries.</description>
	<pubDate>Wed, 02 Dec 2009 15:55:09 +0000</pubDate>
	<generator>http://wordpress.org/?v=wordpress-mu-1.0</generator>
	<language>en</language>
			<item>
		<title>The Feed Doctor on Unnecessary Reundant Duplication</title>
		<link>http://blog.channeladvisor.com/blog/2009/12/02/the-feed-doctor-on-unnecessary-reundant-duplication/</link>
		<comments>http://blog.channeladvisor.com/blog/2009/12/02/the-feed-doctor-on-unnecessary-reundant-duplication/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 15:55:09 +0000</pubDate>
		<dc:creator>Anthony Alford</dc:creator>
		
		<category>Uncategorized</category>

		<category>Comparison Shopping</category>

		<guid isPermaLink="false">http://blog.channeladvisor.com/blog/2009/12/02/the-feed-doctor-on-unnecessary-reundant-duplication/</guid>
		<description><![CDATA[Long time readers are familiar with the REDUCE function that lets you &#8220;roll up&#8221; child item (or variation) data to send in a Comparison Shopping Engine feed.  For example, you can write a business rule that will produce a comma-separated list of all the available sizes for a given parent item.
Somebody here at work [...]]]></description>
			<content:encoded><![CDATA[<p>Long time readers are familiar with the <a href="http://blog.channeladvisor.com/blog/2008/02/10/the-feed-doctor-reductio-ad-absurdum/">REDUCE function</a> that lets you &#8220;roll up&#8221; child item (or variation) data to send in a Comparison Shopping Engine feed.  For example, you can write a business rule that will produce a comma-separated list of all the available sizes for a given parent item.</p>
<p>Somebody here at work pointed out to me that the problem is that parent items often vary by color AND size.  For example, here&#8217;s an item with 4 variations:</p>
<table border="1">
<tr>
<th>Size</th>
<th>Color</th>
</tr>
<tr>
<td>Small</td>
<td>Red</td>
</tr>
<tr>
<td>Small</td>
<td>Blue</td>
</tr>
<tr>
<td>Large</td>
<td>Red</td>
</tr>
<tr>
<td>Large</td>
<td>Yellow</td>
</tr>
</table>
<p>If I were to write a REDUCE rule to get the colors, it might look like this:<br />
<code>REDUCE(FUNCTION(VARS(@X,@Y),JOIN("~",@X,@Y)),$CHILDREN.COLOR,"")</code></p>
<p>and the result would look like this:<br />
<code>~Red~Blue~Red~Yellow</code></p>
<p>I&#8217;ve got &#8220;Red&#8221; in there twice, which looks kind of silly.  What I really want is the <em>distinct</em> color values.  So, of course, I wrote a new function.</p>
<p>The function is called DEDUP, and it has two parameters:</p>
<ul>
<li>The text to operate on</li>
<li>A delimiter</li>
</ul>
<p>First, let&#8217;s be clear on what DEDUP does NOT do.  It does not remove duplicate <em>items</em> from your feeds.  Instead, you give DEDUP some kind of delimited list (note: NOT a lookup list, but a single piece of text), and tell it what the delimiter is, and it will find the distinct items in that list, order them alphabetically, and give it back as a delimited list again.  Here&#8217;s an example:<br />
<code>DEDUP("~Red~Blue~Red~Yellow","~")</code></p>
<p>and the output:<br />
<code>~Blue~Red~Yellow</code></p>
<p>Of course, we wouldn&#8217;t really put a piece of text like &#8220;~Red~Blue~Red~Yellow&#8221; right in the rule; we&#8217;d use the REDUCE rule we already wrote:<br />
<code>DEDUP(REDUCE(FUNCTION(VARS(@X,@Y),JOIN("~",@X,@Y)),<br />
$CHILDREN.COLOR,""),"~")</code></p>
<p>Oh wait: I don&#8217;t want the output to start with &#8220;~&#8221;.  So we need another REGEXREPLACE to rip that tilde off the beginning of the output:<br />
<code>REGEXREPLACE(DEDUP(REDUCE(FUNCTION(VARS(@X,@Y),<br />
JOIN("~",@X,@Y)),$CHILDREN.COLOR,""),"~"),"^~","")</code></p>
<p>and the output:<br />
<code>Blue~Red~Yellow</code></p>
<p>This brings my total to only 5 posts for this whole year.  Anybody want to take bets on when I&#8217;ll write another one?
</p>
<p class="akst_link"><a href="http://blog.channeladvisor.com/?p=596&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_596" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://blog.channeladvisor.com/blog/2009/12/02/the-feed-doctor-on-unnecessary-reundant-duplication/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Check out ChannelAdvisor&#8217;s 2010 Holiday Catalog</title>
		<link>http://blog.channeladvisor.com/blog/2009/11/20/check-out-channeladvisors-2010-holiday-catalog/</link>
		<comments>http://blog.channeladvisor.com/blog/2009/11/20/check-out-channeladvisors-2010-holiday-catalog/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 21:50:03 +0000</pubDate>
		<dc:creator>delisa.reavis</dc:creator>
		
		<category>Uncategorized</category>

		<guid isPermaLink="false">http://blog.channeladvisor.com/blog/2009/11/20/check-out-channeladvisors-2010-holiday-catalog/</guid>
		<description><![CDATA[ChannelAdvisor&#8217;s second annual holiday catalog is now available.  Shop online and save up to 30% with with discounts from more than 40 ChannelAdvisor retailers! 
www.channeladvisor.com/holidaycatalog

Share This
]]></description>
			<content:encoded><![CDATA[<p>ChannelAdvisor&#8217;s second annual holiday catalog is now available.  Shop online and save up to 30% with with discounts from more than 40 ChannelAdvisor retailers! </p>
<p><a href="http://www.channeladvisor.com/holidaycatalog">www.channeladvisor.com/holidaycatalog</a>
</p>
<p class="akst_link"><a href="http://blog.channeladvisor.com/?p=595&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_595" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://blog.channeladvisor.com/blog/2009/11/20/check-out-channeladvisors-2010-holiday-catalog/feed/</wfw:commentRss>
		</item>
		<item>
		<title>E-Commerce ‘Silly Season’ to peak in UK on December 7th</title>
		<link>http://blog.channeladvisor.com/blog/2009/11/10/e-commerce-%e2%80%98silly-season%e2%80%99-to-peak-in-uk-on-december-7th/</link>
		<comments>http://blog.channeladvisor.com/blog/2009/11/10/e-commerce-%e2%80%98silly-season%e2%80%99-to-peak-in-uk-on-december-7th/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 21:31:11 +0000</pubDate>
		<dc:creator>delisa.reavis</dc:creator>
		
		<category>Amazon</category>

		<category>United Kingdom</category>

		<guid isPermaLink="false">http://blog.channeladvisor.com/blog/2009/11/10/e-commerce-%e2%80%98silly-season%e2%80%99-to-peak-in-uk-on-december-7th/</guid>
		<description><![CDATA[By Simon Besley
So, as happens every year, Q4 &#8216;Silly Season&#8217; and the question of &#8216;The Busiest Day&#8217; rears its head and online retailers scramble to ensure that their products are in stock, keenly-priced and made available to as many online shoppers as possible.
This year will be no different and, if we&#8217;re to believe the IMRG [...]]]></description>
			<content:encoded><![CDATA[<p>By Simon Besley</p>
<p>So, as happens every year, Q4 &#8216;Silly Season&#8217; and the question of &#8216;The Busiest Day&#8217; rears its head and online retailers scramble to ensure that their products are in stock, keenly-priced and made available to as many online shoppers as possible.</p>
<p>This year will be no different and, if we&#8217;re to believe the IMRG Capgemini e-Retail Sales Index – which showed that UK shoppers spent over £4.67 billion online in December 2008 (the equivalent of £76.67p for every person in the UK, and a 14% increase on December 2007) – the recession is driving shoppers online more than ever.</p>
<p>Typically, most people shop online (from the comfort of their office chairs) on a Monday, no doubt taking advantage of PC access and quicker internet connections, not to mention the attraction of a leisurely start to the working week.</p>
<p>Indeed, 2008 saw Monday, 8th December as the peak online shopping day – compared to Saturday, 20th December on the high-street, according to Visa – and the IMRG also showed that most business was done between 1pm and 2pm.</p>
<p>My uncomplicated prediction for the killer date in your diary this year?</p>
<p><strong>Monday December 7th.</strong></p>
<p>Obviously, there’s no hard and fast rule to this (although I’m sure the Post Office will play its usual part in swaying consumer confidence), but consumers are well aware of the dangers of ordering those Christmas presents too late in the day, and are affording themselves more of a buffer.</p>
<p>With that in mind, here’s a quick checklist for our ChannelAdvisor clients to optimise that holiday season traffic:</p>
<p>-Stock levels clearly shown<br />
-Images clear and showing correctly<br />
-Any promotions (shipping, discounts etc.) repeated throughout the site </p>
<p>Worth also noting is that Amazon has (from the 13th October until 1st January) abolished shipping costs, something that resonates strongly with consumers, even if that cost has been absorbed into the product price.</p>
<p>I’d be interested to know whether you have your own take on the festive season and its opportunities, and if some of you have actually – historically – seen a different consumer buying pattern in the run-up to Christmas.<br />
&#8211;<br />
Simon Besley is a Senior Account Manager on the UK ChannelAdvisor team where he develops eCommerce strategy and growth for several leading online retailers. He has worked in the online retail environment since 2002 and previously held positions with Dealtime/Shopping.com and Webloyalty.</p>
<p class="akst_link"><a href="http://blog.channeladvisor.com/?p=594&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_594" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://blog.channeladvisor.com/blog/2009/11/10/e-commerce-%e2%80%98silly-season%e2%80%99-to-peak-in-uk-on-december-7th/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Announcing Next-Generation Amazon Solution</title>
		<link>http://blog.channeladvisor.com/blog/2009/09/22/announcing-next-generation-amazon-solution/</link>
		<comments>http://blog.channeladvisor.com/blog/2009/09/22/announcing-next-generation-amazon-solution/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 14:51:07 +0000</pubDate>
		<dc:creator>Scott Hurff</dc:creator>
		
		<category>Uncategorized</category>

		<guid isPermaLink="false">http://blog.channeladvisor.com/blog/2009/09/22/announcing-next-generation-amazon-solution/</guid>
		<description><![CDATA[Today, we&#8217;re releasing an enhanced next-generation Amazon solution that makes it easier than ever before to get exposure to, target and acquire your share of Amazon’s 95 million active buyers. 
We built this to offer two categories of benefits: saving time and generating more sales.
SAVE TIME

Quick, flexible launch - get live on Amazon within 10 [...]]]></description>
			<content:encoded><![CDATA[<p>Today, we&#8217;re releasing an enhanced next-generation Amazon solution that makes it easier than ever before to get exposure to, target and acquire your share of Amazon’s 95 million active buyers. </p>
<p>We built this to offer two categories of benefits: saving time and generating more sales.</p>
<p>SAVE TIME</p>
<ul>
<li>Quick, flexible launch - get live on Amazon within 10 minutes
</li>
<li>Real-time dashboards that for the first time give you a dynamic, birds-eye view of your listings’ statuses
</li>
<li>Product Match: proprietary technology that automatically detects duplicate product listings and gives you the information you need to list onto the best possible listing</li>
</ul>
<p>SELL MORE</p>
<ul>
<li>Fulfillment by Amazon support that allows you to centralize all your product data, regardless of fulfillment center
</li>
<li>Out-of-catalog product creation that lets you add products that don’t exist on Amazon.com within the application
</li>
<li>Technology that identifies listings to be optimized so they appear higher in search results and get more potential sales</li>
</ul>
<p>We&#8217;re excited about this new opportunity to get your business selling more on Amazon. <a href="http://www.channeladvisor.com/amazonsolutions">You can find more information here</a>, or contact scott.hurff (at) channeladvisor (dot) com. </p>
<p class="akst_link"><a href="http://blog.channeladvisor.com/?p=593&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_593" class="akst_share_link" rel="nofollow">Share This</a>
</p>]]></content:encoded>
			<wfw:commentRss>http://blog.channeladvisor.com/blog/2009/09/22/announcing-next-generation-amazon-solution/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
