Hi,
I am trying to convert the following into a Jython future-enabled script:
'If Len(trim(VarValues(23)))>0 then Result=VarValues(23) else Result="[None]" End If
this is the Jython script I created:
proc = fdmRow.getString("UD3")
if (len(proc) > 0):
fdmResult = proc
else:
fdmResult = "[None]"
but it does not work and I don't understand why...
We are on FDMEE 11.1.2.3 and importing data from file. The script is supposed to manage the automatic mapping of NULL fields in data records for a specific dimension.
Integration is targeting HFM.
Someone can help?
TX!