I am triggering the Import Accounting Transactions ESS Job from Oracle Integration Cloud (OIC).
Currently, my approach is:
- Submit the ESS job.
- Use Get ESS Job Status in a while loop to poll the status.
- Continue until the job status becomes SUCCEEDED or ERROR.
- After completion, trigger another App Driven Orchestration integration.
However, this job does not support a native callback/event notification, so polling is the only option I found.
Is there any other more optimized or recommended approach in OIC to handle this scenario instead of using a continuous while loop?