Hi team,
I am wondering how can I implement scCheckout to count once per purchase done by user. What setting needs to be updated in Analytics Admin settings.
@yuhuisg , Yes I agree every check out is not meant for Purchase, but my query is to capture one count of scCheckout for one purchase. Each purchase should have only one count of scCheckout. If I select "record once per visit" for scCheckout then I will lose scCheckout count if more than one order is placed in the same visit. If I select "always record" for scCheckout then I will get more count of scCheckout if user visit Checkout page multiple times. If I select "use eventID" for scCheckout then I will get only one count for life long purchase done by user. Please help me.
Solved! Go to Solution.
Views
Replies
Total Likes
Hi @dinesh_kumar_r ,
From what it sounds like, your best bet would be to SERIALIZE the event. Our team has done this before where we serialized using a Cart ID and by doing this, the Checkout step only gets fired ONCE per purchase. Does that sound like a solution for your business problem?
Views
Replies
Total Likes
Considering that when a user checks out his cart, you don't know if he is actually going to purchase or not. So your question is puzzling because 100% of purchases will have scCheckout… unless you're tracking scCheckout in a way that doesn't ultimately result in a purchase.
Views
Replies
Total Likes
Given your requirements, the closest that I can think of is to get a count of visits that had at least 1 scCheckout.
E.g. a calculated metric like so:
(Visit segment where Checkouts >= 1)
- Visits
To make it equitable with the purchases, you'd then also want a count of visits that had at least 1 purchase.
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Replies
Total Likes
Hi @dinesh_kumar_r ,
From what it sounds like, your best bet would be to SERIALIZE the event. Our team has done this before where we serialized using a Cart ID and by doing this, the Checkout step only gets fired ONCE per purchase. Does that sound like a solution for your business problem?
Views
Replies
Total Likes
Views
Replies
Total Likes
Hi dinesh_b_kumar_, if you want to have a pure funnel, you may want to start serializing from the time your Customer opens their cart (scOpen). At that time is when you would establish your cartID.
For example:
s.events = "scOpen:{cartID}";
You could then call the cartID each time the user progresses through the funnel:
viewCart
scCheckout
purchase
To answer your question, when you fire scCheckout, it would then look like this:
s.events = "scCheckout:{cartID}";
I would NOT recommend serializing scAdd, because you want to know how many times someone adds an item to cart, and scOpen should be fired the first time the customer adds an item to their cart. Now, if you are interested in knowing how many times a customer actually views their cart or checks out, you then have the option of implementing additional, custom events that you could fire at the same time so you can also see the number of times a customer views their cart or checks out before they actually make their purchase.
Make sense?
https://experienceleague.adobe.com/docs/analytics/implementation/vars/page-vars/events/event-seriali...
Views
Replies
Total Likes
Views
Likes
Replies