We have a process that needs three applications, (one unix reflection and two websites) need to be logged into before the processing starts. From REframework concept, how to avoid this initialization when we dont have transaction data?
That is is it Ok to push the get transaction data check before init applications?
Will appreciate the input from best practices point of view.
Then do one thing. Before opening applications check whether any items are there or not to process. If it’s not there then Throw System exception using Throw activity. Then it will go to End Process state.
For that, you have to check the queues in Init state before “InitiAllApplications”. Based on the queue availability add a logic to invoke all applications.