Forum Discussion
Adobe Analytics Connector Limiting Dimensions
- 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 } ], ...
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
}
],
...
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!
- jeffshieldsdev7 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.