For the given script, any amount that is not zero, it will map to itself.
If the account comes in as 1234_5678_9101 and we want to map it to 1234.5678.9101, how would that appear in the fdmResult?
I've tried varying parsing functions and having no luck.
account = fdmRow.getString("ACCOUNT")
amount = fdmRow.getString("AMOUNT")
if (amount) == 0:
fdmResult = "IGNORE"
else
fdmResult = account