Defining the importer
We can also define the behavior of the importer and trigger additional processes that can be performed when the integrator is uploaded. We can do this by doing a query about the importer and moving to Step 5 of the Integrator wizard. In this recipe, we will override the standard functionality of the integrator, by triggering a concurrent program automatically when the integrator is executed. In this particular example, it means that data will be uploaded to the table by the integrator, and then a concurrent program will automatically be triggered to process the data that we uploaded. The following assumes that we have created a concurrent program to process the rows in the upload table. We have not gone through the creation of the concurrent program in this recipe. See if you can do that and add the concurrent program using the following instructions.
How to do it…
To override the standard integrator functionality and trigger a concurrent program when our integrator is...