ÃÛ¶¹ÊÓƵ

pageName

The pageName variable typically stores the name of a given page. It is helpful to determine what individual pages are most popular. This variable populates the Page dimension.

If this variable is not defined on a given page tracking call, the pageURL variable is used instead.

NOTE
ÃÛ¶¹ÊÓƵ data collection servers strip this dimension from all link tracking image requests. If you want this dimension to appear in link tracking hits, consider copying this dimension into an eVar.

Page name using the Web SDK

Page name is mapped to the following variables:

Page name using the ÃÛ¶¹ÊÓƵ Analytics extension

You can set page name either while configuring the Analytics extension (global variables) or under rules.

  1. Log in to using your ÃÛ¶¹ÊÓƵID credentials.
  2. Click the desired tag property.
  3. Go to the Rules tab, then click the desired rule (or create a rule).
  4. Under Actions, click an existing ÃÛ¶¹ÊÓƵ Analytics - Set Variables action or click the ‘+’ icon.
  5. Set the Extension drop-down list to ÃÛ¶¹ÊÓƵ Analytics, and the Action Type to Set Variables.
  6. Locate the Page name section.

You can set page name to any string value, including data elements.

s.pageName in AppMeasurement and the Analytics extension custom code editor

The s.pageName variable is a string that typically contains the name of the page. It has a maximum value of 100 bytes; longer values are truncated. This truncation includes instances where it falls back to pageURL if this variable is blank.

// Set page name to a static value
s.pageName = "Example page name";

// Set page name to the page's title
s.pageName = window.document.title;

If using the digitalData data layer:

s.pageName = digitalData.page.pageInfo.pageName;
recommendation-more-help
b4f6d761-4a8b-4322-b801-c85b9e3be690