Expand my Community achievements bar.

Join us at Adobe Summit 2024 for the Coffee Break Q&A Live series, a unique opportunity to network with and learn from expert users, the Adobe product team, and Adobe partners in a small group, 30 minute AMA conversations.
SOLVED

Orders tracking incremental due to page refresh

Avatar

Level 1

Hi All,

 

We are facing issues in some transactions where a user might have refreshed the page after successful payment multiple times because of which we are observing more number of orders whereas the actual orders are lesser.

 

Request someone to please suggest a resolution to this issue?

Thanks in advance, will be great help.

1 Accepted Solution

Avatar

Correct answer by
Level 6

Hi @ishank_tewari ,

 

It sounds like you may want to add/interact with some development logic on the page to make it clear when a page load corresponds to the actual transaction.

As an example, there may be logic on the previous page which determines whether a transaction is successful and routes users to the new page. Using the logic of a successful payment on the previous page, one solution would be to temporarily set a flag in the client's local storage which is read and removed on the successful payment page. Then on a refresh, it would no longer find the flag in local storage and wouldn't set the custom event.

 

Actually, the solution on your duplicate post, here, seems sufficient as long as there aren't any other custom events being set at the same time.

 

This question may be more appropriate to ask in the Launch sub forum.

 

All the best,

J

View solution in original post

2 Replies

Avatar

Correct answer by
Level 6

Hi @ishank_tewari ,

 

It sounds like you may want to add/interact with some development logic on the page to make it clear when a page load corresponds to the actual transaction.

As an example, there may be logic on the previous page which determines whether a transaction is successful and routes users to the new page. Using the logic of a successful payment on the previous page, one solution would be to temporarily set a flag in the client's local storage which is read and removed on the successful payment page. Then on a refresh, it would no longer find the flag in local storage and wouldn't set the custom event.

 

Actually, the solution on your duplicate post, here, seems sufficient as long as there aren't any other custom events being set at the same time.

 

This question may be more appropriate to ask in the Launch sub forum.

 

All the best,

J

Avatar

Level 7

Hello @ishank_tewari 
I will suggest to use event serialization as it prevents de-duplication of event. For more information you can check this link :- https://experienceleague.adobe.com/docs/analytics/implementation/vars/page-vars/events/event-seriali...