Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. X
I would like to get distinct items from results that are infotable type.
It's similar with "distinct()" of SQL.
Is there anyone know about this as a embedded function of Thingworx?
Solved! Go to Solution.
I'm sorry.
I found distinct service in the Infotable function.
Below is my code.
Please refer my code if you have same problem of mine.
============================================================
var params = {
maxItems: 500 /* INFOTABLE */,
startDate: undefined /* QUERY */,
endDate : undefined,
oldestFirst: false,
};
var result = me.QueryPropertyHistory(params);
var params = {
t: result,
columns: "UserID"
};
// result: INFOTABLE dataShape: "undefined"
var result = Resources["InfoTableFunctions"].Distinct(params);
======================================================================
I'm sorry.
I found distinct service in the Infotable function.
Below is my code.
Please refer my code if you have same problem of mine.
============================================================
var params = {
maxItems: 500 /* INFOTABLE */,
startDate: undefined /* QUERY */,
endDate : undefined,
oldestFirst: false,
};
var result = me.QueryPropertyHistory(params);
var params = {
t: result,
columns: "UserID"
};
// result: INFOTABLE dataShape: "undefined"
var result = Resources["InfoTableFunctions"].Distinct(params);
======================================================================