Forum Discussion
Anonymous
7 years agoNot applicable
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...
- 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 } ], ...
Anonymous
7 years agoNot applicable
In the following example you gave:
{Cube.ApplyParameter, "Top", {10000, "evar123"}},what is the top 10000 based on? Is it the top 10000 based on evar123? Is it the top 10000 alphabetically? And what happens if I change evar123 to "null"?
Thanks!
jeffshieldsdev
7 years agoSolution Sage
Yes, it's saying "return the top 10,000 evar123 values". You can return up to 50,000 values. Without specifying a Top, the default of 10 values will be returned.
I believe the order is based on the first measure, if no measure is used it will probably be page views or occurances--not sure though.