REF, data entry to one application and update to another

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 ?

Thank you
Raj

@Raj_esh

Welcome to the community

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

cheers

Thanks @Anil_G

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 ?

@Raj_esh

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

cheers

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 .

Thank you :blush:

@Raj_esh

a separate would be better based on how big the process is

if it small then just call it in end process

cheers

It is a small process, just that I need to get the application status if it fails to open

Thanks

@Raj_esh

Then just use a try catch around login and send email in part …and then can upload the status

Cheers

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.