process-mining
latest
false
UiPath logo, featuring letters U and I in white

Process Mining

Last updated Sep 4, 2025

Loading data from multiple source systems

Using CData Sync, it is possible to load data from multiple different source systems into a single process app. To do that, multiple extraction jobs have to be created, each having a corresponding source connection. Each extraction job has to call the next one in its post-job events, such that all jobs are executed one-by-one. The final job has to do the API call after it has finished. The following illustration shows an overview.



Linking jobs

In CData Sync, to make sure a job calls the next job, go to the Events tab and edit the Post-Job Event section of the first job to add the code displayed.
<!-- Start Executing different Job -->
<api:set attr="job.JobName"        value="Job2"/>
<api:set attr="job.ExecutionType"  value="Run"/>
<api:set attr="job.WaitForResults" value="true"/> <!--Setting value=true causes the processing to wait for the job to complete. -->
<api:call op="api.rsc/executeJob" httpmethod="post" authtoken="<YourAPIToken>" in="job"/><!-- Start Executing different Job -->
<api:set attr="job.JobName"        value="Job2"/>
<api:set attr="job.ExecutionType"  value="Run"/>
<api:set attr="job.WaitForResults" value="true"/> <!--Setting value=true causes the processing to wait for the job to complete. -->
<api:call op="api.rsc/executeJob" httpmethod="post" authtoken="<YourAPIToken>" in="job"/>
Tip: Follow these steps to obtain an API Token in CData Sync:
  1. Go to Settings > Users.
  2. Search for the user you want to use.
  3. Open the properties of the user.
  4. Enable API Access. A field for Authtoken will become visible.
  5. Copy the value for Authtoken and replace <YourAPIToken> with this value.
  • Linking jobs

Was this page helpful?

Get The Help You Need
Learning RPA - Automation Courses
UiPath Community Forum
Uipath Logo
Trust and Security
© 2005-2025 UiPath. All rights reserved.