Update a row value in infotable
Hi,
I have data in the info table. I want to replace particular column values(Another service outcome). How can I update it?
var x = me.getData();//x is infotable
for each( var row in x.rows)
{
var y= me.ltime_conv({
ltime: row.LTIME /* LONG */,
lyear: row.DLYEAR /* LONG */});//Another service out come
x.DTIME = y;//Here I'm trying to replace DTIME column values
}
result =x;
Regards,
Surekha N.

