Skip to Main Content

Analytics Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Jython mapping script null values

Angelo Marino-OracleMay 10 2017 — edited May 23 2017

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!

This post has been answered by Francisco Amores on May 16 2017
Jump to Answer

Comments

Processing
Locked Post
New comments cannot be posted to this locked post.

Post Details