Which to use among Sequence, Flowchart, State Machine?

Hi All

When starting a project, how to decide what to use among Sequence, Flowchart, State Machine or RE Framework ?

1 Like

See this guide for the differences between the three.

https://books-guides.com/discuss-uipath/

3 Likes

Hi @kkpatel

See this link for your reference it might be helpful to you.

cheers :smiley:

Happy learning :smiley:

4 Likes

Depending on what workflow you want to develop.

SEQUENCE → When multiple branching is not required, When your project is not complex and does not connect activities in multiple ways .

FLOWCHART → A type of project that consists of various activities which can be connected to one another in multiple ways, enabling you to automate simple actions and create complex business processes. It yields diagrams that help you easily view and follow your process. Flowcharts can be either used as stand-alone automation projects or included in procedures of greater amplitude.

STATE MACHINE → A state machine is a type of automation that uses a finite number of states in its execution. It can go into a state when it is triggered by an activity, and it exits that state when another activity is triggered.

Another important aspect of state machines are transitions, as they also enable you to add conditions based on which to jump from one state to another. These are represented by arrows or branches between states.

Mark it as a solution if my comments have helped you.

Thanks
Veeresh

3 Likes