<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Additional Methods To Measure Interaction Using The Get Time To Complete Plug-In</title>
	<atom:link href="http://webanalyticsland.com/sitecatalyst-implementation/additional-methods-to-measure-interaction-using-the-get-time-to-complete-plug-in/feed/" rel="self" type="application/rss+xml" />
	<link>http://webanalyticsland.com/sitecatalyst-implementation/additional-methods-to-measure-interaction-using-the-get-time-to-complete-plug-in/</link>
	<description>Omniture SiteCatalyst Implementation Optimization.</description>
	<lastBuildDate>Fri, 20 Aug 2010 16:55:53 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Loryn-Aimee</title>
		<link>http://webanalyticsland.com/sitecatalyst-implementation/additional-methods-to-measure-interaction-using-the-get-time-to-complete-plug-in/comment-page-1/#comment-156</link>
		<dc:creator>Loryn-Aimee</dc:creator>
		<pubDate>Sat, 15 May 2010 10:50:04 +0000</pubDate>
		<guid isPermaLink="false">http://webanalyticsland.com/?p=284#comment-156</guid>
		<description>Thank you digdeep. I agree it&#039;s a great plugin, and would recommend adding a classification for time groupings to it to make for easier analysis where necessary.

I&#039;ve implemented this on an eCom site, measuring the difference between Cart Open and Checkout and again between Checkout and Purchase using different props and cookie names.

    if (s.events) {
       // Time to Build Cart
       if (s.events.match(/scOpen/i)) s.prop9=&#039;start&#039;;
       if (s.events.match(/scCheckout/i)) s.prop9=&#039;stop&#039;;
       s.prop9=s.getTimeToComplete(s.prop9,&#039;ttbc&#039;,0);

       // Time to Check Out
       if (s.events.match(/scCheckout/i)) s.prop10=&#039;start&#039;;
       if (s.events.match(/purchase/i)) s.prop10=&#039;stop&#039;;
       s.prop10=s.getTimeToComplete(s.prop10,&#039;ttco&#039;,0);
    }

prop9 works, prop10 does not - only one value of &quot;start&quot; shows up.
Does anything stand out to you?
The only thing I can think of changing is the expiration (currently set to 0 as in your example) which leads me to the second point:
I actually do want the number of days lapsed between the two events to show in cases where visitors took a number of days to build their cart including if their activity happened in different visits. Do you know which other values for expiration can be inserted in that 3rd parameter?

Any light on this would help loads!!</description>
		<content:encoded><![CDATA[<p>Thank you digdeep. I agree it&#8217;s a great plugin, and would recommend adding a classification for time groupings to it to make for easier analysis where necessary.</p>
<p>I&#8217;ve implemented this on an eCom site, measuring the difference between Cart Open and Checkout and again between Checkout and Purchase using different props and cookie names.</p>
<p>    if (s.events) {<br />
       // Time to Build Cart<br />
       if (s.events.match(/scOpen/i)) s.prop9=&#8217;start&#8217;;<br />
       if (s.events.match(/scCheckout/i)) s.prop9=&#8217;stop&#8217;;<br />
       s.prop9=s.getTimeToComplete(s.prop9,&#8217;ttbc&#8217;,0);</p>
<p>       // Time to Check Out<br />
       if (s.events.match(/scCheckout/i)) s.prop10=&#8217;start&#8217;;<br />
       if (s.events.match(/purchase/i)) s.prop10=&#8217;stop&#8217;;<br />
       s.prop10=s.getTimeToComplete(s.prop10,&#8217;ttco&#8217;,0);<br />
    }</p>
<p>prop9 works, prop10 does not &#8211; only one value of &#8220;start&#8221; shows up.<br />
Does anything stand out to you?<br />
The only thing I can think of changing is the expiration (currently set to 0 as in your example) which leads me to the second point:<br />
I actually do want the number of days lapsed between the two events to show in cases where visitors took a number of days to build their cart including if their activity happened in different visits. Do you know which other values for expiration can be inserted in that 3rd parameter?</p>
<p>Any light on this would help loads!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: VaBeachKevin</title>
		<link>http://webanalyticsland.com/sitecatalyst-implementation/additional-methods-to-measure-interaction-using-the-get-time-to-complete-plug-in/comment-page-1/#comment-122</link>
		<dc:creator>VaBeachKevin</dc:creator>
		<pubDate>Mon, 14 Dec 2009 05:01:34 +0000</pubDate>
		<guid isPermaLink="false">http://webanalyticsland.com/?p=284#comment-122</guid>
		<description>The Counter eVar are designed for when you are trying to count the number actions a user takes before an event. For example, you may use an eVar to capture the number of internal searches before purchase. Each time a visitor searches, the eVar should contain a value of +1. If a visitor searches four times before a purchase, you will see an instance for each total count: 1.00, 2.00, 3.00 and 4.00. 

The Time To Complete plug-in however will return a time it took to get from one action to another. Using this plug-in if you check the debugger you will see something like:
&lt;img src=&quot;http://webanalyticsland.com/images/ttc.jpg&quot; alt=&quot;Time To Complete Plugin Debugger&quot; /&gt;

Check out Answer ID 1443 in the Omniture knowledge base for more information about using a Counter eVar.</description>
		<content:encoded><![CDATA[<p>The Counter eVar are designed for when you are trying to count the number actions a user takes before an event. For example, you may use an eVar to capture the number of internal searches before purchase. Each time a visitor searches, the eVar should contain a value of +1. If a visitor searches four times before a purchase, you will see an instance for each total count: 1.00, 2.00, 3.00 and 4.00. </p>
<p>The Time To Complete plug-in however will return a time it took to get from one action to another. Using this plug-in if you check the debugger you will see something like:<br />
<img src="http://webanalyticsland.com/images/ttc.jpg" alt="Time To Complete Plugin Debugger" /></p>
<p>Check out Answer ID 1443 in the Omniture knowledge base for more information about using a Counter eVar.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: digdeep</title>
		<link>http://webanalyticsland.com/sitecatalyst-implementation/additional-methods-to-measure-interaction-using-the-get-time-to-complete-plug-in/comment-page-1/#comment-121</link>
		<dc:creator>digdeep</dc:creator>
		<pubDate>Mon, 14 Dec 2009 00:29:00 +0000</pubDate>
		<guid isPermaLink="false">http://webanalyticsland.com/?p=284#comment-121</guid>
		<description>Sweet post,

Waiting on my Omniture account manager to discuss something similar so perfect timing :)

I thought counter evars served this purpose? what is the difference between the plug in vs counter evars?

tks..n</description>
		<content:encoded><![CDATA[<p>Sweet post,</p>
<p>Waiting on my Omniture account manager to discuss something similar so perfect timing <img src='http://webanalyticsland.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I thought counter evars served this purpose? what is the difference between the plug in vs counter evars?</p>
<p>tks..n</p>
]]></content:encoded>
	</item>
</channel>
</rss>
