Solved
how to collect data entries from three datatable
Hey Community, here i want data from three different datatables and i want to have all the entries in one infotable. How can i achieve it? i think i need to have here infotable and collect all the data there...
let data;
linesArray.forEach(line => {
logger.info("QControl."+line.lineName+"-"+line.lineLocation+".DT");
let thingName = "QControl."+line.lineName+"-"+line.lineLocation+".DT";
let maxItems = Things[thingName].GetDataTableEntryCount();
data = Things[thingName].GetDataTableEntries({
maxItems: maxItems /* NUMBER */
});
});

