E9.2 Check job status within orchestration

ybuffetaud

ybuffetaud

Active Member
Hi I have made an archestration to launch an UBE via the BSFN B91300C, it will be used by our ETL (semarchy XDI) to manage for exemple our night processes.
I want to complete that with another orchestration that wille have the following entries:
  • synchronous/asynchronous option : if synchronous we will check the status otherwise the orchestration will have to finish
  • Limit duration in second : if synchronous is on we will check every 5 seconds the status in F986110 but if the limit time is reached we stop on put the orchestration on error for this reason
How to do that in an orchestration? Is it only a groovy script?

Regards
 
I would suggest looking at the report service api on the AIS server. Get the Completion Status of a Report

You can access it using a REST connector pointing at your local AIS server. No groovy is required. You can define the json in the body of the connector and use text substitution ${} to pass in the job number.
 
Back
Top