The community will undergo maintenance on October 16th at 10:00 PM PDT and will be unavailable for up to one hour.
Hi,
I am having an infotable (thingName (STRING), serviceName (STRING)) 10 rows (may vary). Each row having thing name and service name. I have to execute all the services available from infotable in a particular scheduled event. How to handle this scenario?
Thanks & Regards,
Sathishkumar C.
Solved! Go to Solution.
Do you want something like this?
for(var x=0; x<list.rows.lenght; x++) {
var row = list.rows[x];
var rowResult = Things[row.thingName][row.serviceName]();
}
Do you want something like this?
for(var x=0; x<list.rows.lenght; x++) {
var row = list.rows[x];
var rowResult = Things[row.thingName][row.serviceName]();
}