PageOccurrences
View the number of times a specific page was loaded or interacted with over a defined period of time (last 30 days by default).
This predefined report view is based on the 'Next Page' and 'Previous Page' Adobe Analytics template. If no segment filter is specified, this view returns a report containing only the Page dimension and the Occurrences metric. To generate a 'Next Page' or 'Previous Page' report, you must specify the corresponding segment using the SegmentId column in the WHERE clause.
By default, the report covers the last 30 days. To customize the date range, specify StartDate and EndDate in the WHERE clause. If only StartDate is provided, EndDate defaults to today. If only EndDate is provided, StartDate defaults to two years before the specified EndDate.
An example query would be:
SELECT * FROM [PageOccurrences] WHERE [StartDate] = '2025-01-01' AND [EndDate] = '2025-01-31' AND [SegmentId] = 's300012345_1234567890'
Columns
| Name | Type | IsDimension | IsMetric | DefaultDimension | Description |
| Page | String | True | True | The names of pages on your site. | |
| Occurrences | Double | True | The number of hits where a given dimension was set or persisted. | ||
| StartDate | String | Specifies the beginning of the reporting period. | |||
| EndDate | String | Specifies the end of the reporting period. | |||
| SegmentId | String | Specifies the ID of a predefined or custom segment to filter the report data. |