this is not working - the first sys id is added twice
var arrSYSIDS = [];
while (gr.next()) {
arrSYSIDS.push(gr.sys_id);
gs.print(gr.sys_id);
}
SOLUTION: try this instead:
var arrSYSIDS = [];
while (gr.next()) {
arrSYSIDS.push(gr.sys_id.toString());
gs.print(gr.sys_id);
}
Comments
Post a Comment