cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X

Is there "Distinct" function in the Infotable services?

YangJaeUng
5-Regular Member

Is there "Distinct" function in the Infotable services?

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?


1 ACCEPTED SOLUTION

Accepted Solutions
YangJaeUng
5-Regular Member
(To:YangJaeUng)

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);

======================================================================

View solution in original post

1 REPLY 1
YangJaeUng
5-Regular Member
(To:YangJaeUng)

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);

======================================================================

Top Tags