Book Image

Robotic Process Automation with Automation Anywhere

By : Husan Mahey
Book Image

Robotic Process Automation with Automation Anywhere

By: Husan Mahey

Overview of this book

With an increase in the number of organizations deploying RPA solutions, Robotic Process Automation (RPA) is quickly becoming the most desired skill set for both developers starting their career and seasoned professionals. This book will show you how to use Automation Anywhere A2019, one of the leading platforms used widely for RPA. Starting with an introduction to RPA and Automation Anywhere, the book will guide you through the registration, installation, and configuration of the Bot agent and Control Room. With the help of easy-to-follow instructions, you’ll build your first bot and discover how you can automate tasks with Excel, Word, emails, XML, and PDF files. You’ll learn from practical examples based on real-world business scenarios, and gain insights into building more robust and resilient bots, executing external scripts such as VBScripts and Python, and adding error handling routines. By the end of this RPA book, you’ll have developed the skills required to install and configure an RPA platform confidently and have a solid understanding of how to build complex and robust, yet performant, bots.
Table of Contents (20 chapters)

Using the PDF dictionary

As you have been progressing through the walk-throughs, you may have noticed an additional property at the bottom of the properties pane for all the actions referring to the Dictionary variable. Automation Anywhere has a pre-built Dictionary type variable for PDF documents. For each PDF document your bot reads, the Dictionary variable will store the following information:

Figure 14.34 – PDF dictionary

Figure 14.34 – PDF dictionary

In the following walk-through, you will modify the last PDF: Decrypt document action on line 13 to assign the dictionary details to a newly created variable. We can then use a message box to see the document properties.

Let's start this walk-through by executing the following steps:

  1. Firstly, we need a Dictionary type variable to store the information. Create a Dictionary type variable called dctPDF and set Type to be Dictionary and Subtype to be String, as follows:
    Figure 14.35 – Creating a Dictionary variable type

    Figure 14.35 – Creating a Dictionary...