Beispielzuordnungsskripte

Dieses Beispielzuordnungsskript wertet die Konto- und Entityspalten aus und weist einen Wert für die Zielspalte zu. Außerdem stellt es dar, wie die anderen Spalten der aktuellen Zeile mit der Zuordnung fdmResult aktualisiert werden:

#----------------------------------------------------------------
# Sample Jython Mapping Script. Script evaluates account and entity
# columns and assign value for the target column. In addition it 
# also shows how to update the other columns of current row using
fdmResultMap
#------------------------------------------------------------------
account = fdmRow.getString("ACCOUNT")
entity = fdmRow.getString("UD1")
# Map based on account and dept column values
fdmResultMap["ATTR1"] = account + "-" + entity
if (account[0:2] == "71"):
  fdmResult = "7110"
elif (account[0:2] == "72"):
  fdmResult = "7210"
elif (account[0:2] == "77" and entity == "205"):
  fdmResult = "7710"
  fdmResultMap["AMOUNTX"] = 0
else:
  fdmResult = "7310"
Das folgende Beispielskript verwendet die SQL-Anweisung "CASE", um zugewiesene Werte für die Zielspalte bedingt zu verarbeiten.
#-------------------------------------------------------------------
# Sample SQL script. Script uses SQL CASE statement to conditionally
# process assign value for the target column. 
#-------------------------------------------------------------------
  CASE
    WHEN ACCOUNT LIKE '61%'    AND ud1 = '205'    THEN '6110'
    WHEN ACCOUNT LIKE '61%'    AND ud1 = '240'    THEN '6120'
    ELSE '6130'
END