Hi everyone ,
need to update an application with status excel , after data entry using the queue items, to a different application. Where do I place this sequence ?
If I take the number of items in the queue and compare with transaction item number, if retry happens will it fail ?
Or should I place it in the end state after transactions are zero ?
if you need the full report at once…then it would be good to do it in end process…you can use get queue items to get all items and then use for loop and write the data
How I have done is now , data entry in the process state of Ref, then I need the the success and exceptions captured in two different excels along with it . Now the success excel has to be updates to another app . If I place it in end state , how will I manage if the This app fails to start ?
Then have the final piece of reporting as separate process
or one more way is update in it inset transactions status for each transaction…but while doing that if you have an exception first you need to check if the max retry is reached only then write else ignore
I was thinking of either creating as a separate process and calling from end state or directly a sequence to upload the excel to new app before closing the applications .