I want to build some basic monitoring/dashboard for reports (paginated/PBI).
I am reading table dbo.ExecutionLogStorage
, but I don´t know some values in the columns.
Column ReportAction
--> I know this below -->
CASE(ReportAction) WHEN 1 THEN 'Render' WHEN 2 THEN 'BookmarkNavigation' WHEN 3 THEN 'DocumentMapNavigation' WHEN 4 THEN 'DrillThrough' WHEN 5 THEN 'FindString' WHEN 6 THEN 'GetDocumentMap' WHEN 7 THEN 'Toggle' WHEN 8 THEN 'Sort' WHEN 9 THEN 'Execute' ELSE 'Unknown' END AS ItemAction,
And What numbers from 10 to 19?
I didn´t found any documentation. Do you have some documentation or something else?
Thank you..