Using Jython Objects with Mapping Scripts
Use the following predefined Oracle Hyperion Financial Data Quality Management, Enterprise Edition Jython objects within mapping scripts.
Table 7-1 Using Jython Objects with mapping scripts
Jython Object | Description |
---|---|
fdmRow |
fdmRow id used to access any column in the current row being processed by
the mapping process. You can access any column in the TDATASEG
table. To access a value in a column, specify the following:
fdmRow.getString ("<COLUMN NAME>") .
For example, to get the value of the ENTITY column, specify
fdmRow.getString ("ENTITY") .
|
fdmResult |
fdmResult is used to return the value from the mapping function. You can set
the value as follows fdmResult = "Cash" . The
fdmResult is used to update the value for the
target dimension, which is also referred to as the "X"
column.
For every dimension in the |
fdmResultMap |
fdmResultMap is used to update any column in the TDATASEG table. The column
name in the TDATASEG table is used as the key in the map. For
example, to update the ATTR1 column use
fdmResultMap["ATTR1"] = "Asset
Acct" . To set the target amount to 0 use
fdmResultMap["AMOUNTX"] = 0 .
|