Import Set onAfter script runs for ignored rows during transformationDescriptionWhen transforming import set data, you can set the ignore object in the onBefore script to true to skip transforming that row. However, if an onAfter script is defined, this script runs even for skipped rows.See Transform maps and Map with transformation event scripts for general information about transform map scripts. Symptoms The transform map onAfter script runs when the ignore object is set to true in the onBefore script.CauseThe onAfter script does not have access to the ignore object value from the onBefore script.ResolutionInclude a check in the onAfter script to determine the import state of the source row. Ignored rows have a sys_import_state value of "ignored".For example, you can include the following code to exit the onAfter script if the row was ignored. if (source.getValue("sys_import_state") === 'ignored') return;