Skipping Get Transaction Block

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 :slight_smile:
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

@Pogboom

  1. Open the Main.xaml file in your project.
  2. Locate the State Machine and find the Get Transaction Data state.
  3. Remove the entire content inside the Get Transaction Data state, including the activities and sequences.
  4. Connect the Init state directly to the Process state by dragging a transition arrow from the Init state to the Process state.
  5. In the Init state, make sure to set up or retrieve any necessary data that the Process state requires. This might include initializing variables, reading configuration settings, or any other setup steps.

can you share sample workflow? for reference

Hi @Pogboom -

State Transaction coming from Init → Successful to Process
And State Transactions going to get transaction block redirected to the end process state.

Main.xaml (54.5 KB)