Query on implementing previous page in adobe analytics | Community
Skip to main content
New Participant
November 28, 2023
Solved

Query on implementing previous page in adobe analytics

  • November 28, 2023
  • 1 reply
  • 919 views

Hi everyone, I have implemented previous page in adobe analytics using plug-ins. But the problem here is the previous page value is not getting captured for the 1st page of the visit which is resulting in unspecified value in analytics report. Is there any way to sort it out?

Thanks.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Jennifer_Dungan

The first page of the visit doesn't have a "previous page"... 

 

The Previous Page plugin works by storing the value of the current page, and passing in in the next page's page view call, then replacing the stored value with the new "current" page.

 

Example:

  • Page 1
    • Currently Set Previous Page value = empty value
    • Value stored as a session variable (Page 1) to use on the next page view
  • Page 2
    • Currently Set Previous Page value = Page 1
    • After sending the previous stored value, the new value (overwriting the old value) ("Page 2") to use on the next page view
  • Page 3
    • Currently Set Previous Page value = Page 2
    • After sending the previous stored value, the new value (overwriting the old value) ("Page 3") to use on the next page view
  • etc

 

This is working exactly as expected... there is nothing to fix.

1 reply

Jennifer_Dungan
Jennifer_DunganAccepted solution
New Participant
November 28, 2023

The first page of the visit doesn't have a "previous page"... 

 

The Previous Page plugin works by storing the value of the current page, and passing in in the next page's page view call, then replacing the stored value with the new "current" page.

 

Example:

  • Page 1
    • Currently Set Previous Page value = empty value
    • Value stored as a session variable (Page 1) to use on the next page view
  • Page 2
    • Currently Set Previous Page value = Page 1
    • After sending the previous stored value, the new value (overwriting the old value) ("Page 2") to use on the next page view
  • Page 3
    • Currently Set Previous Page value = Page 2
    • After sending the previous stored value, the new value (overwriting the old value) ("Page 3") to use on the next page view
  • etc

 

This is working exactly as expected... there is nothing to fix.

New Participant
November 28, 2023

Okay, Thank you.

Jennifer_Dungan
New Participant
November 28, 2023

You're welcome 🙂

 

It can be a bit hard to wrap your head around the concept of "tracking a previous value", basically it's a deferral of sending data.