Mapping parameters that includes the following content:
from
The directory of the input data in inputContext.
to
The directory of the outputContext where the data of from is to be saved.
append
Defines how data is saved in outputContext.
▪ I: The data is saved to the corresponding location in outputContext. For example, srcIColl[10] is saved to targetIColl[10].
▪ T: Save data as the last record of target IndexedCollection. For example, if there are two records in targetIColl and the first records starts from 0, the new record is saved to targetIColl[2].
▪ F: Records in targetIColl is removed, then execute the same action as option T.
setElementFilter
public void setElementFilter(ElementMappingFilter elementFilter);
Set filter to filter out the source data elements that do not need to map. One usage scenario is by remote flow to filter out the system elements when processing mapping.