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

How to compare two infotable fields

Velkumar
18-Opal

How to compare two infotable fields

Hello all,

 

Can anyone tell me, how to compare two infotable fields are same ?

 

Thanks,

VR

1 ACCEPTED SOLUTION

Accepted Solutions

Ok, then you need to recover Infotable definition fields, to do that you can use the following code:

 var fields ;//
    if ((infotable.dataShape==null)||(infotable.dataShape==undefined)) {
        fields = infotable.ToJSON().dataShape.fieldDefinitions;
    } else {
        fields = infotable.dataShape.fields;
    }

Than you do for both infotables, and check if they have the same fields.

 

 

View solution in original post

4 REPLIES 4

What does you mean with two infotable fields? All the rows for the same field name or what?

Hello @CarlesColl,

 

I want to compare whether both Infotable have same field's. We are not comparing rows.

 

Regards,

VR

Ok, then you need to recover Infotable definition fields, to do that you can use the following code:

 var fields ;//
    if ((infotable.dataShape==null)||(infotable.dataShape==undefined)) {
        fields = infotable.ToJSON().dataShape.fieldDefinitions;
    } else {
        fields = infotable.dataShape.fields;
    }

Than you do for both infotables, and check if they have the same fields.

 

 

slangley
23-Emerald II
(To:CarlesColl)

Hi @Velkumar.

 

If the response provided by @CarlesColl answered your question, please mark it as the Accepted Solution for the benefit of others who may have the same question.

 

Regards.

 

--Sharon

Top Tags