Map with transformation event scripts
- UpdatedJan 30, 2025
- 6 minutes to read
- Yokohama
- Data Management
Transformation events occur during the process of transforming an import set table onto a table.
These events modify the transformation behavior from any type of mapping specification. Transformation Event scripts modify the processing of the events at various stages of the transformation.
For example, the processing of a mapping operation defined using the Mapping Assist Utility can be manipulated using the event scripts. There are a number of import set JavaScript objects that are accessible during these events. These objects represent tables or portions of tables. It is important to note that what these objects refer to varies depending on the context of the event in which they are referenced.
Event name | Event Parameters | |||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
onStart | When: The onStart event script is processed at the start of an import run, before any data rows are read.
Example:
|
|||||||||||||||||||||||||||||||||
onComplete | When: The onComplete event script is processed at the end of an import run, after all data rows are read and transformed.
Example:
|
|||||||||||||||||||||||||||||||||
onBefore | When: The onBefore event script is processed at the start of a row transformation, before the source row is transformed into the target row.
Example:
|
|||||||||||||||||||||||||||||||||
onAfter | When: The onAfter event script is processed at the end of a row transformation, after the source row has been transformed into the target row and saved.
Example:
|
|||||||||||||||||||||||||||||||||
onForeignInsert | When: The onForeignInsert event script is processed at the start of the creation of a related, referenced record, before the record is created.
Example:
|
|||||||||||||||||||||||||||||||||
onChoiceCreate | When: The onChoiceCreate event script is processed at the start of a choice value creation, before the new choice value is created.
Example:
|
|||||||||||||||||||||||||||||||||
onReject | When: The onReject event script is processed during the occurrence of a foreign record or choice creation, and the foreign record or choice is rejected ,the entire transformation row is not saved.
Example:
|