Posted on 18/02/2022 15:48:37
Hi Justin,
I think it depends on the source provider.
If you are using the xml provider then you can create and select an xslt file for transforming the source xml data.
Otherwise, I think you would have to implement a custom extension in C# - TableScript or Adapter.
TableScript (simple)
Create a class which inherits from Dynamicweb.DataIntegration.Integration.TableScript
Implement the ProcessInputRow method which allows you to manipulate the data values for each row of input data.
Then configure the import to use your custom table script.
Adapter (advanced and configurable)
Create a class which inherits from Dynamicweb.DataIntegration.Integration.Adapters.AdapterBase
Override the GetNext method which allows you to manipulate the data values for each row of input data.
Then configure the import to use your custom adapter.
Best regards,
Morten