Cloud Application Integration is key to automation of business processes and given the nature of the service, it needs to have a rich set of connectivity to various systems.
It is virtually impossible to build connectors for each system as they run into Thousands. However, we live in the age of “standards” where each of these systems offer API interface. Cloud Application Integration provides a “visual” way to create connections to any of such systems via REST API.
We would also need to tie these multiple connections together to be able to automate the business process. For this, we will use Processes that will help us weave these connectors together and let the user perform basic coding paradigms like decision making and parallel path execution.
In this lab exercise, we will create “Automotive Services” service that does the following:
1. Get the list of makes (and models for these makes) for a duration (1990-year). This would need calling Edmunds service for getting car makes.
2. Iterate over the makes (as a sub-process) and get the model count for each of these car makes, add them up and show as output.
OR:
1. Get the list of makes (and models for these makes) for a duration (1990-year). This would need calling Edmunds service for getting car makes.
2. Iterate over the makes (in the same process) and get the model count for each of these car makes, add them up and show as output.
The above needs to be achieved by creating various Cloud Application Integration objects and weave them together to automate.