Interaction Save Log
Returns when projects were last saved together with the total amount of saves.
Name | Description |
---|---|
Form | The form the user saved |
LastSavePage | The page the user did the most recent save on |
LastSaveTimeUTC | The time the user did the most recent save |
Log_Guid | The log_guid of the form session |
SaveCount | How many times the user saved in total |
Raw Data Access
Access to the raw data can be achieved using the query below
SELECT TOP (1000) [Business_Unit_GUID]
,[Log_Guid]
,[LastSaveTimeUTC]
,[Form]
,[LastSavePage]
,[SaveCount]
FROM [vwInteractionLog_Save]
Updated almost 5 years ago