Hello, I have the next code inside the filter:
{
var pac_nombre = "PEPE";
globalMap.put('pac_nombre',pac_nombre);
return true;
}
And inside the transformer in the mapping section:
globalMap.get('pac_nombre'
The output field is return:
org.mozilla.javascript.NativeJavaObject@998c5d
If I put localMap the variable return null.
Can you help me?
{
var pac_nombre = "PEPE";
globalMap.put('pac_nombre',pac_nombre);
return true;
}
And inside the transformer in the mapping section:
globalMap.get('pac_nombre'

The output field is return:
org.mozilla.javascript.NativeJavaObject@998c5d
If I put localMap the variable return null.
Can you help me?
Comment