Solved
How Update data of tag to data in INFOTABLE ?
I try to bring the value to INFOTABLE by Service script but yet unsuccessful
Please ask for advice on solving problems.


I try to bring the value to INFOTABLE by Service script but yet unsuccessful
Please ask for advice on solving problems.


Still not sure what you are looking for. Maybe the AddOrUpdateDataTableEntry function? This could look like this.
// Create Infotable
var params = {
infoTableName: "InfoTable" /* STRING */,
dataShapeName: "<Your Shape>" /* DATASHAPENAME */
};
var values = Resources["InfoTableFunctions"].CreateInfoTableFromDataShape(params);
var value = {
Tag1: 1000,
Tag2: 1
};
// Fill Infotable
infoTable.AddRow(value);
me.AddOrUpdateDataTableEntry({
values: values
});Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.