Skip to main content

ABBYY FlexiCapture: Using Label Field Element to find Title and Value

In my previous post, I showed you guys how we can use Static Text Element and Character String Element  And so now in this post I am going to show you one another important element known as Label Field Element

Label Field Element is an element by which we can detect Title/Label as well as find the value of the same. It is a compound element which the program uses to search for fields that have names. It includes the following subelements:
  1. Static Text: This contains the name of the field. example- invoice number, invoice date, amount, and company name, etc.
  2. White Gap: This describes the gap between the name and the value of the fields.
  3. Value: This describes the contents of the value field
Label Field elements are marked with  in the tree.
When Label Field searches for the name of the field, the program will consider the Recognized Words and Recognized Lines object detected by pre-recognition and falling withing the element's search area.
So when it finds the name of the field, the program searches for the field related to that label which already found.
Label Field

Let's understand its 3 main tabs as shown in the above image:
  1. Label (Name Properties): The Label of a field is described by a Static Text Element. It works exactly the same as Static Text Element works. 
     
  2. Field Position: In this, we can find the position od the field relative to its Label. It can be at the right, at the left, above, or below.
    • Field Alignment: In this, we specify the alignment of the field's search area relative to the rectangle enclosing the name. The value here depends on the value of the Field Position means if we find a label at the left or at the right of the name, its search area may be aligned by the top or bottom boundary or may be centered. Similarly, if the field is positioned above or below the name its search area may be aligned by the left or right boundary.
    • Minimum Space: This specifies the minimum space between the name and the field.
    • Search area width: The width of the search area
    • Search area height: The height of the search area
    • Detect indent size: It is a flag specifies whether a White Gap element should be used to detect the distance between the field and its name.
    3.  Field Search constraints: The search constraints for a field are specified on the Field Position              tab. This tab functions are very much similar to the Character String Element.    
 
  • Field Content: This specifies the type of the field's contents. Depending on the type of the field, the Field Position tab may include additional search constraints those are the following:
                - Fixed Variants
                - Numbers
                - Currency
                - Date
                - Phone
                - Regular expression
So these are the things that we see in the Label Field Element. In the video below you can see how it works. 

Comments

Popular posts from this blog

Shell script to find factorial of a number

You can create a shell script to find the factorial of a number using a while loop. Here is an example: In this script, we prompt the user to enter a number and store it in the variable number . We then initialize two variables, factorial and counter , to 1 and the value of number , respectively. We use a while loop to iterate through the numbers from the value of number down to 1. In each iteration, we multiply the current value of factorial by the current value of counter , then decrement the value of counter by 1. At the end of the loop, we output the final value of factorial , which is the factorial of the number entered by the user. You can execute this script by making it executable by running chmod +x scriptname and then you can run ./scriptname. Make sure that you have bash installed in your system, otherwise, you have to use a different shell accordingly. This script uses a for loop to iterate from 1 to the given number, and calculates the factorial by multiplying the cur...

What is UiPath Orchestrator

UiPath Orchestrator is a web-based application that enables the management and monitoring of UiPath Robots and processes. It is a central hub for managing and controlling all your automation tasks, making it an essential tool for enterprise automation. With UiPath Orchestrator, users can easily manage their automation tasks by creating, scheduling, and monitoring processes. The platform allows you to deploy, schedule, and monitor your automation workflows, as well as manage the robots that execute them. The application also provides you with detailed analytics, allowing you to optimize your automation and make data-driven decisions. Designed By: by MANOJ JHA One of the key features of UiPath Orchestrator is the ability to schedule automation processes. With its built-in scheduler, you can set up recurring automation tasks to run at specific times, ensuring that critical processes are executed even when you're not there. Additionally, you can also trigger automation workflo...

Difference between static ip and dynamic ip

An IP (Internet Protocol) address is a unique numerical label assigned to every device connected to a computer network that uses the Internet Protocol for communication. There are two main types of IP addresses: static and dynamic. A static IP address is a fixed IP address that is manually assigned to a device. Once a static IP address is assigned to a device, it does not change, regardless of whether the device is turned off or disconnected from the network. A dynamic IP address, on the other hand, is assigned to a device dynamically, typically by a DHCP (Dynamic Host Configuration Protocol) server. Dynamic IP addresses are assigned each time a device connects to a network, and they can change over time. Here are some differences between Static IP and dynamic IP Persistence: Static IP addresses are persistent and do not change, whereas dynamic IP addresses are assigned each time a device connects to a network and can change over time. Manual or Automatic Configuration: Static IP addre...