In Reframework is there any way to skip get transaction block completely ?
so that the bot goes from Init State to Process state, since i am not using any queues
Do we need to change the design?
1 Like
Well, if you want to skip the block, delete the block ![]()
And create new transitions from init to process and remove any dependencies on the transactioItem object.
However the REF using any form of list, be it a queue, or excelfile etc is all built around the queueitems/transaction items. If you don’t use any of that, there is little use to even use the REF and just built a separate template from scratch as a more straightforward flow.
Hey @Pogboom
There is an annotation note in the Get Transaction state which guides you to do that.
Btw, your process is linear or transactional ?
Thanks
Nithin
- Open the
Main.xamlfile in your project. - Locate the State Machine and find the
Get Transaction Datastate. - Remove the entire content inside the
Get Transaction Datastate, including the activities and sequences. - Connect the
Initstate directly to theProcessstate by dragging a transition arrow from theInitstate to theProcessstate. - In the
Initstate, make sure to set up or retrieve any necessary data that theProcessstate requires. This might include initializing variables, reading configuration settings, or any other setup steps.
can you share sample workflow? for reference
