How to retrieve data from aggregate function which from services in datatable.
May I know how to put value which is from aggregate function in data table services, and what is the output?
May I know how to put value which is from aggregate function in data table services, and what is the output?
// result: INFOTABLE dataShape: "RootEntityList"
var tempTable = ThingTemplates["GenericThing"].GetImplementingThings();
var params = {
t: tempTable /* INFOTABLE */,
columns: "name" /* STRING */,
aggregates: "COUNT" /* STRING */,
groupByColumns: undefined /* STRING */
};
// result: INFOTABLE
var result = Resources["InfoTableFunctions"].Aggregate(params);
be sure to set the service output to InfoTable
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.