Kepware store & forward functionality is not pushing all the tag updates during disconnection
This is my current code of thingshape subscription
{
// then create empty infotable using the same datashape
var params = {
infoTableName : "InfoTable",
dataShapeName : "myownLoggedData.DataShape"
};
// CreateInfoTableFromDataShape(infoTableName:STRING("InfoTable"), dataShapeName:STRING):INFOTABLE(engineDS)
var result = Resources["InfoTableFunctions"].CreateInfoTableFromDataShape(params);
var newEntry = new Object();
newEntry.value = value; // INTEGER
newEntry.timepoint = eventData.newValue.time; // DATETIME
result.AddRow(newEntry);
me.LoggedValue = result;
me.LastLoggedValue = value;
}
}
me.LastLoggedTimepoint = eventTime;

