Posts

RPA Roles and Responsibility

Image
    RPA Developer RPA Developer working for enterprises are responsible for problem solving and design the automation based on the need, Once the automation is designed and rolled into the Production, an RPA Developer also needs to make sure that the designed automation is achieving the desired result. An RPA Developer has mainly three roles. 1.    Process Designer 2.    Automation Designer 3.    Production Manager   _______________________ Process Designer The Process Designer is responsible for understanding the current process and monitor the changes that happen after implementing the feedback during development or testing phase. They are ensuing all the RPA developer are in synchronize. ____________________________________________ Automation Architect Automation Architect is the member of core automation team and builds the RPA project using the RPA tool to solve...

UiPath Orchestrator main capabilities

    Orchestrator main capabilities 1.      Orchestrator  helps us to create, maintain and connection between robots and the application. 2.      Deployment –  Orchestrator ensue the correct delivery of packages, versions to assign robots for execution. 3.      Configuration –   Orchestrator  maintains and delivers, robot environment and process configuration. 4.      Queue -  Orchestrator ensure that automatic workload is distribute across all the robots using UiPath Orchestrator Queue. 5.      Monitoring –  Orchestrator provides a monitoring solution that gives you real-time metrics to help you keep an eye on the health and state of your system.   6.      Logging  – The Orchestrator Execution Logs are sent by the Robots connected to it and are displayed in the Logs section of the Jobs or Robots pages. ...

What is Exception Handling in UiPath?

    Exception Handling Exception Handling mainly handling errors with respect to various activities in UiPath. The Error Handling activity has four options. 1.     Rethrow 2.     Terminate Workflow 3.     Throw 4.     Try-Catch _____________ Rethrow Throws an exception previously caught in an exception handling block. Terminate Workflow It is used to terminate the workflow if errors occur. Throw Throw an Exception. Try-Catch Try-Catch activity is used when we want to test something and handling the exception accordingly. So, whatever we want to test put in under try section, and then if any error occurs, then it can be handled using the catch section. Apart from the try-catch section, we also have “ Finally ” section which is used to mention those activity which must performed after the try and catch are executed. _____________ Type of Error The types of errors are divided into app...

What is Logging in UiPath?

Image
    Logging Logging is the process of keeping logs of various events that occur during project execution. There are three types of logs: _________________ How to do logging? Logs are applied using the Log Message activity.   _________________ Logging Log message activities should ideally be used: •        At the beginning and the end of every workflow (Log level = Information) •        Each time an exception is caught in a Catch block (Log level = Error) •        Each time a Business Rule Exception is thrown (Log Level = Error) •        When data is read from external sources (for example, log a message at Information level when an Excel file is read) •        In Parallel or Pick activities, log messages on every branch, to trace the branch taken (Log Level = Information...

What is Debugging in UiPath?

Image
  Debugging Debugging is the process of identifying and removing the errors which prevent the project from functioning correctly. In Studio, debugging is   _________________ Troubleshoot, Debug, and Modify processes The Debug tool in UiPath Studio is a real-time engine that checks for errors while working with the workflow. Whenever an activity has errors, UiPath Studio Process Designer notifies and gives details about the issues encountered. _________________ Debugging Actions _________________   Setting Breakpoints

What is Project Organization in UiPath RPA?

Image
    Project Organization •        The project organization is very important. A project must be clean, organized, modularized. •        The project must be structured into modules. •        Adjust the Project settings helps you to set different project settings for the from the beginning. ____________________________________________ Project Organization - Best Practices 5 general rules for understanding best practices: 1)     Pick an appropriate layout for each workflow. 2)     Break the whole process in smaller workflows . 3)     Use exception handling . 4)     Make your workflows readable . 5)     Keep it clean . Benefits of applying best practice principles: •        Reliable : it can handle a variety of external and internal error exceptions. •  ...