Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Adobe Analytics Connector Limiting Dimensions

I am using the Adobe Analytics connector for one of my reports. One of my 'Dimensions' is called 'Websites' and the data is a URL, we look at over 100 websites and I am looking at the traffic for eac...
  • jeffshieldsdev's avatar
    jeffshieldsdev
    7 years ago

    You'll want to use the Top parameter with your dimensions.  You can get up to 50,000 dimension values per call.

    {Cube.ApplyParameter, "Top", {10000, "evar123"}},
    {Cube.ApplyParameter, "Top", {1000, "evar234"}},

    If you open the log for the Report Builder, you should see which elements are using "top" in the json of the reportDefinition:

    ... ,
        "elements": [
          {
            "id": "evar123",
            "top": 10000,
            "startingWith": 1
          }
        ],
    ...