Hi,
I'm reading out a http request, but I want the serialnumber = a global variable. How can I use the variable Usermatrix[6][1] ?
$globalContext("UserMatrix[6][1]") doesn't work
Hi,
I'm reading out a http request, but I want the serialnumber = a global variable. How can I use the variable Usermatrix[6][1] ?
$globalContext("UserMatrix[6][1]") doesn't work
in a template node that would be
varname={{global.UserMatrix.6.1}}
But you could use a change node set to jsonata with
"varname=" & $globalContext("UserMatrix[6][1]")
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.