Interaction Page Log
Returns which pages were visited during a form and how much time was spent on each page. Note the endpoint of being 'on' a page is either going to another page or following scenarios:
- Submitted
- Reassigned
- Go to Project (Tile Question)
- Saved (A saved form can be exited without counting as a drop off).
Name | Description |
---|---|
Form | Name of the form |
Page | Name of the Page |
FocusTimeUTC | When the user opened the page |
SecondsOnPage | How long the user spent on the page |
Raw Data Access
Access to the raw data can be achieved using the following query
SELECT TOP (1000) [Business_Unit_GUID]
,[Form]
,[Page]
,[FocusTimeUTC]
,[SecondsOnPage]
FROM [InfinitiDevV10_0R2].[dbo].[vwInteractionLog_Page]
Updated almost 5 years ago