UiPath Associate - intro to dev role Flashcards
Business Process parts
Usually diagram
Definition: A process is a set of interrelated or interacting activities that transforms inputs into outputs.
Components of a process:
Inputs - the data that goes in the process;
Process Flows - the sequences of sub-processes or activities undertaken in the process;
Source Applications - the applications or systems used to perform the sub-processes or activities of the process;
Outputs - the result generated by the process;
Things to remember: The outputs of a process can serve as inputs for other processes.
Procedure v process
There are a lot of things that are missing from the definition of a standard process, such as time constraints, dependency on other processes, variations and how resources are assigned. This is where procedures come into play.
Usually complex document
A procedure explains:
who is responsible for each part of the process
when each part of the process needs to occur
how to handle exceptions
the specifications applicable to each part of the process.
Good candidate for RPA
Rule-based
Automatable and/or repetitive process
Manual & non-repetitive: the process steps are performed by humans and can be different every time the process is executed
Manual & repetitive: the steps in the process are performed by the user, and at least some of them are the same every time
Semi-automated & repetitive: some of the repetitive steps have already been automated (using macros, Outlook rules, and so on)
Automated: there are processes that have been already automated using other technologies than RPA
Standard input
Stable
Factors that impact automation conplexity
Number of Screens
Types of Applications
Business Logic Scenarios
Types and Number of Inputs
Assessing automation potential
Non rpa Processes where change is frequent, the system environment is volatile, and multiple manual (even non-digital) actions are required
Semi auto Processes that can be broken down into steps that can be clearly automated, and steps that need to stay manual (such as validations or usage of physical security tokens)
High cost rpa Processes that are rather digital and can be automated, but use some technologies that are complex (such as OCR) or require advanced programming skills
0 touch auto Processes that are digital and involve a highly static system and process environment, so that they can be easily broken into instructions and simple triggers can be defined
Six stages in RPA implementations
Use photo
Prepare RPA, Solution Design, Build RPA Solution, Test RPA Solution, Stabilize RPA, Constant Improvement.
The Academy Ecosystem
offers several platforms to help you succeed as an RPA Developer: Connect!, Marketplace, Community Forum and Academy
Automation First.
is a three-pronged approach: A Robot for Every Person, Open and Free Collaboration, Robots Learn Skills
Variables
Variables are containers that can hold multiple data entries
Name - specific, Camel convention
Type - int, general, boolean etc. Type usually assigned by default
Default value -
Scope - level of the workflow, local v global
Creating
Properties, designer(ctrl k) and variable panel
Arguments
Variables that travel between workflows
In, out, in/out
Variable data types
Borrowed from vb.net
Numeric - int, long and double
Boolean - true / false
Date and time - date time / time span
String - text
Collection - aray(same var same size), list(same var dynamic size), dictionary (key, value different data type)
Generic value - text, numbers, dates and arrays
As a good case practice, arrays are used for defined sets of data (for example, the months of the year or a predefined list of files in a folder). Whenever the collection might require size changes, a List is probably the better option.
Elements of flow control”
order in which individual statements, instructions or function calls are executed or evaluated in a software project
Sequence - process steps flow in a clear succession. Decision trees are rarely used
Flowchart - Use flowcharts when decision points and branching are needed in order to accommodate complex scenarios, workarounds and decision mechanisms
State Machine
Global Exception Handler
The control flow statements
If/else
Loops
Switch
If/else
two courses of action that are not arbitrary, an If statement will most likely be used
True = then, false=else, 2 outcomes. If /else sequence = flow switch in flowchart activity
Conditions can be used from VB net
Loop
Do while - It executes a specific sequence while a condition is met. The condition is evaluated After each execution of the statements.
While - It executes a specific sequence while a condition is met. The condition is evaluated Before each execution of the statements.
For each - It performs an activity or a series of activities on each element of a collection.