BPMN 2.0 Archives | Low-Code BPM Platform All-in-one Digital Modernization Fri, 14 Mar 2025 10:31:36 +0000 en-GB hourly 1 https://www.comidor.com/wp-content/uploads/2025/05/cropped-Comidor-favicon-25-32x32.png BPMN 2.0 Archives | Low-Code BPM Platform 32 32 Code Components https://www.comidor.com/help-center/process-automation/code-components/ Wed, 15 Feb 2023 16:43:15 +0000 https://www.comidor.com/?p=36299 Comidor offers a powerful Workflow Designer which is compliant with BPMN 2.0 where you can map and optimize any process that takes place in your company. Comidor provides a plethora of workflow components such as basic, integration, data, RPA, Machine Learning models, and code components to cover every possible need. You can easily drag and […]

The post Code Components appeared first on Comidor Low-code Automation Platform.

]]>
Comidor offers a powerful Workflow Designer which is compliant with BPMN 2.0 where you can map and optimize any process that takes place in your company. Comidor provides a plethora of workflow components such as basic, integration, data, RPA, Machine Learning models, and code components to cover every possible need. You can easily drag and drop any component, connect the elements between them to draw the alternative paths, and add any automation features like an automated email or an automated document creation.

Workflows can be linked with a generic process or with an app.

  • To access Workflows, click on App Factory Icon > Process Automation > Process Designs. Open a record, and click on the tab Design.
  • For Workflow applications, go to App Factory Icon > Application Builder> App Designer and then open a workflow-type app and go to step 2.

Code Components

Include Code Components in the Comidor Workflow Designer, and enhance your processes without using any coding. Users without development skills can add the following code components into the workflows to replace commands and queries:

  • Set values
  • Existence check
  • SQL Creator
  • String Utilities
  • JSON Array to Excel
  • Deserialize JSON

Set values

One of the available code components is the set values, where Comidor enables users to assign values to specific fields. For example, you can give to a date field the value of the current date (#DATE#), make a calculation, define a value (make a checkbox checked, or give an option in a key-value list type field), etc.

  • Give a Title to the component.
  • Set the Parent Stage which is the stage of the parent process as soon as this step is reached.
  • In the Data map, define the fields of the workflow and the values you wish to assign to them.
    • Click on the + icon to map more fields
    • Click on the – icon to remove a row.

Workflow assign values component | Comidor Platform

  • In case you want to modify the Set values code component, you can click on the pencil icon and proceed accordingly.
  • When you run the workflow, the Set values code component runs automatically when you reach this step. The fields defined in the map have the values you have set (eg the checkbox “Paid” will be checked, the “Travel date” will be today’s date and the “Total amount” will be calculated based on the formula and the values of the other 2 fields).

 

Existence check

With the existence check component, Comidor enables users to check if a record exists in a particular Comidor application. For example, you can check the existence of a contact or an account based on a defined condition (eg. email).

  • Give a Title to the component.
  • Set the Parent Stage which is the stage of the parent process as soon as this step is reached.
  • Define in which Entity you want to search in if a record exists. Choose from the list of all Comidor applications.
  • Write the Condition of your query (as if you would write it in a script)
  • Choose a Response field to store the response of the check existence code component.
    • If you receive value 1, the system has found at least one query result
    • If you receive value 0, the system has not found any query result
    • You can use the response field in the workflow conditions to activate an alternative flow.

Workflow check exists component | Comidor Platform

  • In case you want to modify the code component, you can click on the pencil icon and proceed accordingly.

SQL Creator

Another code component is the SQL Creator component, which enables users to produce or execute database queries. For example, you can run an insert query in a specific table (e.g. Contacts). The SQL Creator component supports the statements: Select, Insert, Update, and Delete.

  • Give a Title to the component.
  • Set the Parent Stage which is the stage of the parent process as soon as this step is reached.
  • Type: define the kind of operation/statement you want to perform. Choose between the Select, Insert, Update, and Delete options.
  • Action: choose between:
    • Produce query – the component will form the statement, and write it on the Statement field so that the user can run it on a DB
    • Execute query – the query will be executed and the results (in case of selection) will be shown on the Results field
  • Advanced Query: if checked, the advanced query text area will be displayed and the users write by themselves the query to be executed
    • Recommended for complex queries which cannot be specified otherwise
  • Define in which Table, you want to search in if a record exists. Choose from the list of all Comidor applications.
  • Choose fields: the field (select one field of the table) Value (select an app/process field)
    • in case of insert: the entity which will be inserted will have the value to the respective field
    • in case of update: similarly for the entity which will be updated
    • in case of select: the results of the select query for each field(1st column) will be stored in each Value(2nd column)
    • Click on the + icon to add more fields to your query.
    • Click on the – icon to remove a row.
  • Write the Condition of your query (as if you would write it in a script)
  • Order by: in the first row select the field which will sort the results, and in the second, specify if the sorting will be ascending or descending.
  • Choose a Results field to store the response of the code component.

Examples are given below:

  • You can insert a new contact with specific values in the Contacts table.Workflow SQL insert | Comidor Platform
  • You can update an existing contact, by providing a new email.
  • You can delete all the existing contacts that have been created before a certain date.Workflow SQL delete | Comidor Platform
  • You can get Name, Country and Email from all the existing contacts. (select statement) In the results field, you see the JSON array of all the existing contacts in your database(the response of your query).

Workflow SQL select | Comidor Platform

  • You can get data such as Shipping Address, City, Vat Registration number, and other account fields from 1 existing account. (select statement) In the choose fields, you can map the account fields with process/app fields to assign values to (the response of your query). Do not forget to limit your query with a condition (e.g. where the id of the accounts table is equal to a record field where you chose 1 account “ID=”+#app.USR_SELECT_ACCOUNT#), or add ordering (eg Order by CREATE_DATETIME Descending, and it will fetch the last record added).
    Workflow SQL select | Comidor Platform
  • In case you want to modify the SQL creator code component, you can click on the pencil icon and proceed accordingly.

 

String Utilities

Drag-n-drop the String Utilities code component into your workflow to perform common functions for a string variable (text field). Currently, the String Utilities code component supports the Index of and the Substring methods.
By using the Index of method, the user identifies the position of the first character of a string inside another. It is also a way to actually check if a character or a string exists in another.
The Substring method enables the user to get a part (substring) of a string(text) by defining the start and the end positions.

  • Give a Title to the component.
  • Set the Parent Stage which is the stage of the parent process as soon as this step is reached.
  • Select a string field: the text or memo type field to run this code component.
    • Index of
  • Determine the Function Parameters:
    • Value to be found – for Index of: define the value of a field(runtime value) or a hardcoded value to be found in the string field selected above.
    • Start index – for Substring: add a value of the character position to start the substring
    • End index – for Substring: add a value of the character position to end the substring
  • Choose the Result field to store the response of your function.

Examples:

  • Search a text or memo field that includes the name of a file eg Report_January23.pdf to find the keyword “Report”.  In the String Utilities code component, choose the “Index of” function, define in the function parameter the value to be found “Report”, and choose in the result the field you wish to store the position character that the keyword was found. If the keyword is not found your number field will have the value of 0.
    • You can use this response field in your conditional paths.

string utilities index of | Comidor Platform

  • From a text field that includes the name of a file eg 1020104_January23.pdf, we want to store the unique code, which is the first 7 characters, in another field. In the String Utilities code component, choose the “Substring” function, define in the function parameters the values for start and end indexes (1 and 7 respectively), and choose in the result the field where you wish to store the unique code.

string utilities substring | Comidor Platform

  • In case you want to modify the String Utilities code component, you can click on the pencil icon and proceed accordingly.

JSON Array to Excel

One of the code components that allows you to get values from a JSON is the JSON Array to Excel. Add this code component into your workflow, get values from a JSON array and give its values to an excel type user field.JSON Array to Excel component | Comidor Platform

  • Give a Title to the component.
  • Set the Parent Stage which is the stage of the parent process as soon as this step is reached.
  • Choose the memo/text field that contains the JSON array in the Input.
  • Define from the list of user fields the excel type field to store the Output.
  • Choose the Result text field to store the response of the code component.
    • The response will be “Error” or “Successful”.

Example: If you have received a JSON array as the response from a RESTFull web service or an SQL query, and stored it in a memo or text field, like this:

[{“ID”:”678782656625000″,”USR_STATUS”:”Reserved”},{“ID”:”678782656625800″,”USR_STATUS”:”Pending”}]

you can use this code component to show it to the end user in an excel type field, which is more user-friendly and readable than the JSON array.

 

JSON Array to Excel example | Comidor Platform

Deserialize JSON

Drag-n-drop the deserialize JSON code component into your workflow, get values from a JSON object and give its values to certain fields. Comidor enables users to map the keys of a JSON object with application fields and assign its values to them.

  • Give a Title to the component.
  • Set the Parent Stage which is the stage of the parent process as soon as this step is reached.
  • Choose the memo/text field that contains the JSON object you want to deserialize.
  • Map the JSON keys with fields in which the values of the corresponding keys will be stored.
    • Click on the + icon to add more keys
    • Click on the – icon to remove keys.
  • Choose the Result text field to store the response of the code component.
    • The response will be “Error” or “Successful”.

deserialize json | Comidor Platform

For example, if you have a response from a REST service or SQL query stored in a text/memo field in a JSON like this: [{“ID”:”678782656625000″,”USR_STATUS”:”Reserved”}]

you can use this component to get the values of each key and assign them to specific fields.

deserialize json example | Comidor Platform


Find out more about the rest workflow components here and how to connect them with code components.

The post Code Components appeared first on Comidor Low-code Automation Platform.

]]>
Workflow application https://www.comidor.com/help-center/application-builder/workflow-app/ Thu, 14 Jul 2022 14:33:31 +0000 https://www.comidor.com/?p=35078 Comidor platform offers the ability to design your own workflow apps through App Designer, without using any coding. Making a simple or more advanced workflow app is easier than ever, even for non-developer users. Comidor guides you with simple steps, in order to publish your idea. There are various types of applications provided in Comidor App […]

The post Workflow application appeared first on Comidor Low-code Automation Platform.

]]>
Comidor platform offers the ability to design your own workflow apps through App Designer, without using any coding. Making a simple or more advanced workflow app is easier than ever, even for non-developer users. Comidor guides you with simple steps, in order to publish your idea.

There are various types of applications provided in Comidor App Designer. You can choose the one that fits better your needs from the following options:

  1. Table applications: 
  2. Report applications
  3. Kanban applications

Let’s see step-by-step how to create and run a workflow app.

Workflow Application

The workflow app is a table process-based application. Choose this type when you want to monitor processes that include few or many steps, manual or automated, with multiple paths and business rules, with scheduling, state, completion, etc. With workflow apps, designers can easily map and orchestrate the business process steps with the Comidor powerful workflow engine, which is compliant with BPMN 2.0.

Access App Designer

In order to access App Designer go to the main menu on the left side of your screen and select the icon App Factory > Application Builder > App Designer

 

App Designer | Comidor Platform

 

In the new unit that opens, click on the button Create an App.

Create Report App | Comidor Platform

 

Create App

  • Click on the “Create an App” icon to create a new workflow app. The creation form opens.

Create an App | Comidor Platform

  • In the Application Type select Table Application.

app designer-create a workflow app

  • Give the Application Name and Description.
  • You can either choose from the existing options in the list or add a new Menu Header option. Depending on your selection, your app will be displayed in the corresponding menu header with a new icon. If you leave it empty, it will be included in the packages menu header.
  • You can also classify your app in a proper Category. Choose one Category from the existing options, or make a new Category. Categorization helps you find easier your apps in the App Designer. Based on the category you choose, the app is also displayed on the respective sub-menu.
  • Collaborators are the users or groups that have access rights to this App. Choose one or more users(s) or group (s) from the list.
  • Select whether this app is Basic or Supportive.
  • Leave the option Process enabled checked. If so, you are able to link a Workflow to your App.
  • Uncheck the option Is sequential.
    • If you leave it checked, you will create a Sequential app. You can then, switch to BPMN 2.0 in step 2. Once you switch to BPMN, you will be able to see the respective steps represented in a sequential workflow diagram, where you can add more steps and rules. Your app will no longer be sequential.
  • Define if this app has a Kanban view. If enabled, table records can be displayed on Kanban boards.
  • There is an option to upload an Image for your App.
  • Click Save to create your App, or Close to cancel.

Once you save your app, you are redirected to the view form. Comidor guides you through simple steps to design your App.

App Dashboard | Comidor Platform

 

1. Dashboard

In the step Dashboard, you get an overview of your application. In particular, you are able to view:

  • Quick Stats:
    • Number of forms, Steps, and Widgets that are created in this App
    • Graphs that show the application activity timeline and the Apps Overview status.
  • Basic Info:
    • the Type, Category, and other parameters
    • You can click on the pencil button to edit the above info
      • You can lock your app by checking on the Locked option. With this option, only the user who locks the app will be able to edit the app (in all steps). All the rest users will just be able to view the app, but can not edit it.App Builder sequential lock | Comidor Platform
      • By checking the Has customizations option, the application will not be exportable.
      • Put a flag to remember if this application 
  • Collaborators: the users or groups that have access rights in this App.
  • Comments: an area where users who have access can write and view comments.

2. Process

In the second step, you can fully design your process in terms of the number and the looks of the process steps, your Data model, Table View, and User forms.

Data Model

  • When the Data model tab is open, you see a sub-table with the following columns: icon, label, size, column name, created by, created on, last updated by, last updated on, the pin, and multi checkboxes.
  • You can see the existing and/or add all fields that you want to be used in the App here.  You can click on the “+” to create your own custom fields.
  • Click on the refresh icon, and the table should be updated.
  • Type a keyword in the search area, click enter and the table should be refreshed displaying results that match the keyword.

App designer - data model - workflow apps

  • Click on an existing field, to view its basic info: By default, you will see Entity, Label, Auto-generate name, Column name, Type, Default Value, Store Type, Tooltip, and Security Level. In the Connected Forms tab, you can view the list of forms in which this field is used.

Workflow

Define one by one the steps of your workflow application, or Switch to BPMN design for more advanced applications. Each step is actually a workflow task in BPMN 2.0, with assignees, one form, and fields linked to it. Click on “Create the first step of your application”.

Find out more about Sequential apps here.

  • You have the option to Switch to BPMN design, in the Process step.

sequential App switch to BPMN | Comidor Platform

  • A confirmation pop-up appears.

App switch to BPMN | Comidor Platform

  • If you click Yes, you will be able to see the respective steps represented in a sequential workflow diagram, where you can add more steps and rules. Your app will no longer be sequential but a workflow app.

workflow app- workflow design

With Comidor BPMN 2.0 Designer, you can map and optimize any process that takes place in your company.

  • Drag-n-drop any workflow components from the left side panel, into your pool.
  • Define the attributes of each component
  • Draw the sequence of your steps and define your business rules
  • Make sure you connect all alternative paths with one or more End components.

Basic Components

Comidor offers the following BPMN 2.0 basic components:

  • Tasks and escalations
  • Subprocess
  • Email
  • SMS
  • Notification
  • Timer
  • AND/OR/XOR gateways
  • Annotation
  • End

Integration Components

Additionally, designers can cover their integration needs with the following components:

  • RESTful Web Service
  • OpenAI API
  • Message Queue
  • Teams integration
  • Google integration
  • Zoho projects API
  • Zoho leads API
  • Freshdesk API
  • Salesforce API

Data Components

Designers can use low-code data components for data input and output:

  • Comidor DATA (insert/update/delete)
  • Shell Command
  • File Reader
  • Export Data
  • Convert Data
  • Digital Signature
  • Document Creator
  • QR Generator
  • Table Extractor
  • Excel Processor
  • Graph Creator
  • Blockchain
  • KPI Update
  • DMN

RPA Workflow Components

Other workflow elements can be added within the workflow design to enhance automation in business processes with RPA and ML/AI. Those components are:

  • RPA Caller/ Receiver
  • Sentiment Analysis
  • Document Analyzer
  • Text Classification
  • Predictive ML
  • Selenium RPA
  • Image Classification
  • Web Scraper

Workflow design | Comidor Platform

 

Code Components

Enhance your processes without using any coding with the Workflow Code Components. Add the following code components into the workflows to replace commands and queries:

  • Set values
  • Existence check
  • SQL Creator
  • String Utilities
  • JSON Array to Excel
  • Deserialize JSON

My Plugins

Designers can upload their own plugins for custom code to perform any advanced functionality they wish. Drag and drop the My Plugins Component in any workflow, and then
choose which plugin to run. The response of your plugin can then be stored in an app field and used within your workflow.

Learn more about each Workflow Component in detail.

Table View

  • Determine which columns you wish your App to have in the main table. By default, you should see all the table fields you have created in the steps, and will be added as columns in your application table. Each field has a pencil and x buttons.App designer - table view - workflow apps
  • You can add more Columns, by clicking on the “+” icon and selecting the desired field, or drag-n-drop from the list of the available fields.
    • A pop-up appears to add a column. Choose a field from the list (both custom fields and process fields are available).
    • Add a label name. If left empty, the column gets the field name.
    • Prefix or Suffix to be displayed before or after the value of each entry
    • Select the preferred alignment
    • Define the preferred width in percentage to be displayed as default in the summary table
    • Other options like ALIAS Column, Not Sortable, and Hidden are available, too.
    • Check the “Is Kanban Field?” option in case you want to display this field on the Kanban boards.
    • Click save to add this column to your table, or cancel.

app designer- add a column

  • Drag and drop the field columns, in order to re-arrange their position in the Table View.
  • You can select one or more columns and delete them from Table View if you wish.
  • Click on the edit button to make any changes you need to each column.
  • Click on the x button to remove this field from the Application table.
  • Switch to mobile view, to get a preview of your Application table in a browser of a mobile device. Choose a preferred device (mobile, tablet)

sequential app mobile preview | comidor platform

Forms

All forms included in this App are visible in the tab User Forms. Create a new one or edit the existing forms here.

app designer- forms - workflow apps

  •  By default, no form is chosen. The message “You haven’t selected a form. Please select one!” is shown. Select a form, OK, and plus buttons are available.
  • Click on the “+” icon. A pop-up window appears to define the title of your new form. Click on Save to save your form and you are directed to the form designer.Form Designer-simple apps
  • On the left side of your screen, under the Design tab, you will find the Elements (panel, section, code, paragraph, style, grid, group), a list of fields that you can include in your form, and a preview of the form. Easily search for the desired fields and add them to your form with a simple drag-and-drop action.
  • Click on a field and a pop-up appears where you can add properties for each field. You can define various properties for the field, including mode, label, tooltip, translated value, pattern, pattern error message, required, alignment, placeholder, element CSS, Element CSS Class, label position, size, hidden, Trigger event scripts on user entry, Disable changes by scripts on this field, is Area, Has QR Input, and the Area Size.sequential User Forms field properties | Comidor Platform
  • Under the Settings tab, you should see the following Basic fields: Record type, Title, Access, Main, Primary, Quick, Position, Form Division, Mobile form, Approve/Reject form, and Validity. In the Advanced section, you will find fields such as Script before open, Script before edit, Script before save, and Template File.
  • The following buttons are also available in the form designer: Add tabs, mobile view, toggle fullscreen, publish, copy, and delete.
    • You can also make a form Main, which means it will be visible in the main record as a tab. State the position of each form that you want to display.
    • For the form, you want to start the App with, select the option “Replace existing form” in the field Primary, if you wish to initiate your app from the “+” icon of the summary table of the App.
    • In the Quick field, you can choose the form to be visible in the Quick Add menu or in the process templates list, if you wish to initiate your app from the Quick add menu.
  • Don’t forget to Publish your form after finishing your design.

publish a form

  • Furthermore, you can edit the existing forms from the tab Forms. Select one from the list and click OK.

 


3. Graphs

In step 3, you can design your app Graphs or Widgets. Comidor Widgets are the ideal choice for data visualization. Get the most updated data on the visualization format you define.

App Graphs | Comidor Platform

  • Create your own personalized dashboard in seconds.
  • Combine multiple views of data to get richer insight.

You can easily create a new Graph, by clicking on the “+” icon.

App Graphs | Comidor Platform

Find out more about all types of Widgets and how to create them.


4. Advanced

Get the most out of the App Designer with this advanced options step by including user tabs in your records or the table of your app, event scripts, data objects, and field rules to show or hide fields, sections, or tabs in forms when specific conditions are met. This step is available only for Table applications (non-process & process enabled).

User Tabs

Use tabs to have complete control over the accessibility of your application.

  • The tabs appear inside records (as a tab at the left part of the record) or at the summary table of the application.
  • A tab can be a table from any Comidor entity, HTML, or widget.

User tabs | Comidor Platform

  • You can easily create a new Tab, by clicking on the “+” icon
  • The Record type is by default the name of the App and disabled
  • Select the Type of Tab you wish to create (Table, HTML, or Widget)
    • In Type Table:
      • Give a Title to the Tab
      • In the “View Tab in” choose record.
      • Select Query: the query to define which fields to be fetched as columns from which tables
      • Where Clause: type a specific condition to be met
      • Access Code defines who can access this tab
    • Select Type HTML when you want to add guidelines or other important information for a specific app:
      • Give a Title to the Tab
      • In the “View Tab in“: choose record or table.
      • Access Code defines who can access this tab
      • Unit-action – insert the HTML here

App designer tabs | Comidor Platform

    • Type Widget: a tab to monitor all the widgets (general or application widgets)
      • Give a Title to the Tab
      • In the “View Tab in“: choose the table option.
      • Access Code defines who can access this tab
      • After saving this tab, click on Add widget button to Select the widget you would like to be displayed
      • All added widgets are displayed on Linked widgets. You can click on the ‘-‘ to remove a widget from this tab.

Field Rules

The field rules functionality enables you to hide or show fields/sections/tabs inside forms when certain conditions are met.

Click on the Field Rules tab and you will be able to see the sub-table of all field rules, with the following columns: Rule title, Field(s),  Section(s), Tab(s), Created by, Created on,  and the pin button.

  • Refresh button: Internal refresh in the table/all updated records are presented
  • Search option: type a keyword and press enter; respective field rules appear.
  • Pagination: Navigate through available pages to see all Field rules.

To create a new Field Rule press on the “+” button, and the creation form opens.Create Field Rules | Comidor Platform

  1. Give a Rule title
  2. Select the Action to be performed: you can either Hide or Show
  3. On: choose between fields, sections, or tabs, depending on what you want to show or hide. Depending on the option you choose on the “ON” respective lists will appear.
  4. Set in which Form you wish this rule to be applied (from the user forms that the selected field is displayed)
  5. Choose the name of the Field(s)/Section(s)/Tab(s) that you wish to perform the above action. Click on the + icon to add more rows. – to remove a row.
  6. Select the desired Save option (refer to Quick Reference Guide

Custom Condition Builder

After saving the Field Rule in your workflow app, and while being in the view form, you can add conditions.

  • Click on the ‘+’ icon to insert a new row
  • Select the unit that the field comes from (Process, Application name, etc.)
  • Choose the Name of the Field and its value
  • Use AND, OR, and parenthesis to form your conditions
  • After adding all the rows of conditions you need, click on the Publish condition button.

Field Rules | Comidor Platform

Manage Field Rules

  • If you want to make any changes to a Field Rule, simply select the respective Field Rule and click on the pencil icon.
  • After making any changes click on Save.
  • In order to change the conditions, simply make the changes you wish in the view form of the Field Rule, and then, press the Publish condition.
  • You can Delete one or more Field Rules, by multi-checking them in the Field Rules table and then clicking on Delete.

Field Rules | Comidor Platform

 

Data Objects

Data objects are discrete units of information that are structured and organized within a computer system or database. When we use the term “data object”, we are essentially referring to a set of data that should be considered as an independent entity. Data objects come in a variety of forms, such as data tables, lists, forms, pointers, records, files, and sets.

With data objects in Comidor App Designer, you can enhance the functionality of your event scripts in any app. It allows you to quickly and effortlessly create any type of data set you require.

Data Objects | Comidor Platform

  • To create a new Data Object, simply click on the “+” icon.
  • Create data sets, variables, lists, forms, records, or action data types and define their properties.
  • Utilize those data objects in event scripts.

Event Scripts

In this tab, you are able to write scripts for a certain Data Type to be executed before/after/on a specific event.

Click on the “+” icon to create a new Event script:

  • Add the Procedure Name.
  • Choose the Data Type (apprec, task, process, dataset) and define where you want the script to be applied.
  • An Event Type can be inserted, updated, deleted, etc.
  • In the Procedure Body add your code.
    •  This is for advanced users to write their procedures.

App designer event scripts | Comidor Platform


5. Configuration

In this step, you can make the configuration of the workflow application.

  • Decide what you would like to include from the Basic options
    • NotesTags, and Links.
    • If the Kanban view is enabled, define the “Group by Field” and the “Title Field“. The “Group By Field” is used to categorize boards, while the “Title Field” will serve as the title for each board.
    • The ability to create, edit, and/or delete an entry.
    • The Activity history tab
    • Decide whether you would like to include the print/export options in the summary table of this application.
    • Allow user layout change; the ability to change the table’s categorization, and the pin button to remove columns.
    • Define a Primary Field (Record Identity: Appears in lists, etc). To define a primary field, select one of the fields you created in step 2 from the drop-down list.

Configuration step- basic options

  • Customize your data by:
    • Defining a Numeric field as Incremental, and in every new record, it will automatically increase by one with every new record. Additionally, you have the option to specify the starting number.
    • Setting a Prefix and Suffix to the app and an Incremental No Field; select a number field from the Data Model for which you want to auto-populate a number. eg. for this app the requests will get SR.1, SR.2, etc.
    • Selecting a default categorization for the table view based on a specific field (Title, Priority, etc.) – up to level 3.
    • Choosing a specific field to display the Summary table ordered by ascending or descending order.
    • Granting rights to your app; define to whom each entry is assigned, send notifications, Admin 1,2, and Supervisor. Choose users, groups, or dynamic options such as Creator, creator’s Manager, etc.
    • Setting up to 3 numeric fields, to be displayed in the table as Totals (Sum fields 1, 2, 3).

configuration-data customization

  • You can fully customize the app layout, by selecting font sizes and colors in CSS Design options.

configuration-css design

  • You can easily incorporate custom CSS and JS within the App Designer, unlocking endless possibilities for personalization and enhanced functionality as you build your app. Simply add your custom CSS and JS rules in the Configuration step of your app. Remember to publish the app to save your changes.

configuration-custom css


6. Analytics

The Analytics step provides the designers, with insights into each Workflow’s real-time usage.

Dashboard tab: Set Analytics Filters to get the results you wish.

    • Narrow your results to tasks that were assigned to a specific user or group.
    • Select the period of time you are interested in.
    • Click on Refresh and the following graphs are populated: Analytics Totals, Instances per State, Tasks per User, Delayed tasks per User, Tasks per Team, Delayed tasks per Team

  • Pinpoint the total and delayed instances and tasks that were created within one workflow. Cost is calculated based on the duration of each task multiplied by the cost rate of the user that completes each task. See more in the Services unit.

Analytics Preview tab: Set Analytics Filters to get the results you wish.

  • Choose between Total or Delayed Tasks to be displayed.
  • Monitor the Duration and Cost of each step.
  • Select the period of time you are interested in.
  • Click on Refresh and the diagram is updated wholly. For each chosen filter a row is added with the data from the run time. (value & percentage).

  • View workflow analytics with the “Delayed Task” Filter to measure the scheduled time and the actual time it took for a task to be completed. This feature enables users to identify bottlenecks.  Each task will have the chosen filters (Total tasks, Delayed tasks, Cost, Duration, ineffective KPIs) with counter & percentage. The tasks with delays will be highlighted in red, whereas those with no delays in green.

workflow analytics preview | Comidor Platform

  • View workflow analytics with the “Total Task” Filter to measure how many times every task is executed in total. This will identify your “critical path”, and your process “optimal path” and ultimately will help identify where the focus should be on, for better resource management.

 

Publish your App

Finally, click on the Publish button in order to Publish your app.App Designer publish | Comidor Platform

Your workflow app is ready to use!

Note that you can also create an Application with NLP in just 4 steps. Find out more here.


Edit Apps

If you want to edit an existing workflow app, go to the main menu on the left side of your screen and select the icon App Factory > Application Builder > App Designer. From the list of applications, select the one you wish to edit.

Workflow App Designer delete | Comidor Platform

  • You can navigate through steps 1-6 by clicking on the respective step and applying any change you wish. Do not forget to publish your changes.
  • You can delete a User App if you wish.  Open the App you want to delete, and from the actions button, click on the Delete option.
    • A confirmation pop-up will appear. Click Confirm to proceed with the deletion or cancel.App Designer delete | Comidor Platform
    • You can also check the Linked Entities that will be affected in the respective tab.App Designer linked entities | Comidor Platform

Run an App

Play App | Comidor Platform

  • While viewing an app in the App Designer, you can easily run your workflow app! Click on the Play button on the top right of your screen and the quick add form of this app is populated.Run App | Comidor Platform
  • In case there is no quick add form, a respective message appears and you are directed to step 2, in User forms to create a new quick add form.Play App error | Comidor Platform

See the Table

Users can apply the following actions in the table workflow apps:

  • Access the table (based on the access rights that are specified by the designer)
  • Print or export the table results
  • Apply filters, categorize, and search within each table
  • Access, edit, or delete each record
  • View records in table, kanban, or graph views
  • In the graph view, pie, bar, or stack charts can be easily created with real-time data and the desired filtering.
  • To view the User Apps you created and published through App Designer, follow these steps:
    1. On the left side of your screen, locate the menu.
    2. Select either the Packages Icon or the Header Menu you chose in Step 1 of App Designer.
    3. A list of all the published apps will be displayed here, categorized based on your Category selection in Step 1 of App Designer.
    4. If no category is chosen, the app will be shown under “Packages”.
  • find a custom app in the menuSelect the one you wish to access and it will open in a new tab.

Run App table | Comidor Platform

 

By clicking on the “+” icon you can create a new entry of this app. (In order to see the “+” icon, you should have checked first the respective option in the Configuration step of App Designer). A new tab opens with the form that was created in the App Designer. Fill in the fields and click on Save to add this entry.

See the Record

In a workflow app, the record looks as below:

  • In the process record, you will see all the default Process summary forms and any main forms you have created in the App Designer step 2.

Run App Workflow | Comidor Platform

    • Since the App is process-based and linked with a workflow it will have a State (Opened, Scheduled, Running, etc.) and also some more Tabs in the left-side menu, such as Workflow tasks, attachments, and workflow audit.
      • Keep in mind that the process state needs to be “Running” in order for the workflow to start.
      • Every time a new task is assigned to a user, the user will be notified in his calendar. The user can open the task and view the connected form (if any). Once the task is completed, the workflow moves on to the next step.Workflow App run task | Comidor Platform
      • Click on the tab “Workflow tasks” to see the tasks that have been created so far in a table grid. In particular, you can view which task is completed, by whom, when, and its scheduled and actual duration.

Run App Workflow | Comidor Platform

      • Get real-time data for every workflow step via the Workflow Run Diagram, which is the graphical representation of the entire workflow design that highlights the completed and pending steps in different colors along with start and end times and the paths that the flow follows.

Workflow App run diagram | Comidor Platform

 

The post Workflow application appeared first on Comidor Low-code Automation Platform.

]]>
Workflow Components https://www.comidor.com/help-center/process-automation/workflow-elements/ Thu, 16 Feb 2023 15:03:49 +0000 https://www.comidor.com/?p=21227 The post Workflow Components appeared first on Comidor Low-code Automation Platform.

]]>

With Comidor BPMN 2.0 designer, you can map and optimize every process that takes place in your company. Comidor provides a plethora of workflow components such as basic, integration, data, RPA, and code components to cover every possible need. Easily drag and drop any component, connect the elements between them to draw the alternative paths, and add any automation features like an automated email or an automated document creation.

To access Workflows, click on App Factory Icon > Process Automation > Process Designs.

Open a record, and click on the tab Design.

Workflow Components

Basic Components: 

Comidor offers the following BPMN 2.0 basic workflow components:

    • Tasks and escalations
    • Subprocess
    • Email
    • SMS
    • Notification
    • Timer
    • AND/OR/XOR gateways
    • Annotation
    • End

Integration Components: 

Additionally, designers cover their integration needs with the following workflow components:

    • RESTful Web Service
    • OpenAI ChatGPT
    • Message Queue
    • Teams integration
    • Google integration
    • Zoho projects API
    • Zoho leads API
    • Freshdesk API
    • Salesforce API

Data Components:

Designers use low-code data workflow components for data input and output.

    • Comidor DATA (insert/update/delete)
    • Shell Command
    • File Reader
    • Export Data
    • Convert Data
    • Digital Signature
    • Document Creator
    • QR Generator
    • Table Extractor
    • Excel Processor
    • Graph Creator
    • Blockchain

RPA Workflow Components:

Other workflow components can be added within the workflow design to enhance automation in business processes with RPA and ML/AI. Those components are:

    • RPA Caller/ Receiver
    • Sentiment Analysis
    • Document Analyzer
    • Text Classification
    • Predictive ML
    • Selenium RPA
    • Image Classification
    • Web Scraper

Code Components: 

Users without development skills can add the following workflow code components into the workflow designs to replace commands and queries:

    • Set values
    • Existence check
    • SQL Creator
    • String Utilities
    • JSON Array to Excel
    • Deserialize JSON
    • Custom Component

 

Let’s zoom in on each workflow component.

  • Task

    In the Task component, add the Basic attributes:

    • The title of the task, which is one of the required fields.
    • The Parent Stage, refers to the stage of the parent process as soon as this step is fulfilled.
    • The Assigner’s name (Assigned From), selecting from a list that includes Process Creator, Admin, Assignee’s Manager, or other users.
    • The Assignee’s name (Assigned To), selecting from a wide list of options (Abstract Options: Creator or Personnel of Process, Creator’s or Personnel Manager, Creator’s or Personnel Default group from Organizational Chart/Users’ Groups, Creator’s or Personnel Default group – Leader, Creator’s or Personnel Default group – Parent Group, Creator’s or Personnel Default group – Parent Group Leader, Role associated with a specific Functional Group/Division/Company, Account’s Responsible or Pre-defined options: User(s) name, Group Leader name(s), Group names).
    • The Form, where you connect any User Form (that is already created).

    Workflow Task basic | Comidor Platform

    • Click on more options and more attributes are displayed:
      • Complete the Start point, Endpoint, and Stage fields, and that information will be visible in the Business Process Guidelines of this task.
      • Select the dynamic assignment option between users, groups, leaders, and excluding leaders.
      • Dynamic assignment, select the next assignee from a list of assignee user fields(list free field that fetches users).
      • Exception Assignees, where you define to whom the task will be assigned if other rules set above (group leader, role, etc) do not fetch any user.
      • Option to Filter group assignments according to main process assignees, meaning that a selection of “Assigned to” will be filtered according to what is added in the Main Process “Assigned to” field.
      • Task type (work, appointment, meeting, event, etc.).
      • Define a user Activity related to this task.
      • Parent Completion Percent (%) is the completion percentage of the parent process once the current activity is completed.
      • Link this task with a Mobile form.
      • File, where you attach a draft of a File already uploaded in Comidor.

    Workflow Task more | Comidor Platform

    In the Advanced tab:

      • Define the RACI of the current task: Responsible user, Accountable user, Consulted user, and Informed user.
        • This information is visible in the RACI report as well.
      • Link one or more KPIs with this task. Select from the list and click Add. In the Connected KPIs, you see the linked KPIs and remove records if you wish.
      • Approve/Reject Email Task in case you want this step to be completed via mail.
        • In this case, you should define the Email Task body and the recipient in Addresses, either as a specific email address or in a text field of the workflow. You can also choose one or more binary fields to be sent as attachments in the task email.
      • Do not display the default form option, the basic information of the task is hidden and by selecting a custom user form above, you show the user only the important information based on your design.

    Workflow Task advanced | Comidor Platform

    Other attributes regarding the Scheduling of the task are:

    • Scheduled Start Date, Scheduled End Date, and times: Change the Scheduling of this task, by defining the respective date and time workflow fields.
      • Leave those fields empty if you wish the task to have a Scheduled Start Date the date of task creation.
    • Activity boundaries by setting the Maximum days or Maximum hours of this task duration.
      • Tip: In case you want to associate this task’s completion with the end of the whole workflow, you may put a negative numbering i.e. “-5” meaning 5 days before workflow completion.
    • Mandatory task duration field, where you ensure that the user completes the actual duration before task completion.
    • Priority and Importance of this task.

    Workflow Task scheduling | Comidor Platform

    Work Practice: describe the Activity that should be performed. Add plain text or use an HTML editor.

    • This information is visible in the task’s description and the Business Process Guidelines.

    Workflow work practice | Comidor Platform

    In the tab Attachments, designers upload one or more files that are related to this step. Anyone with access to the process design can view the attachments.

    Workflow Task attachments | Comidor Platform

    SubProcess

    In the SubProcess component, you can fill in most of the fields (as explained in Task), but also the following:

    Connectors: Sequence/Conditional Flow

    Through Conditional Flows, you connect your workflow elements (activities, gateways, or events) and design any possible/desired alternative path. For example, once a Task is created you should connect it with the previous element with a Conditional Flow. In the conditional flow form:

    • Drag and drop a conditional flow from a Start Event to an Activity and select the Target State, which is the initial state of the target activity (state can be Scheduled or Running). Type a brief description of the conditional flow that will help users in understanding this part of the workflow.Workflow conditions | Comidor Platform
    • Drag and drop a conditional flow from an Activity/Gateway and select the Source State and Target State, which are the trigger state (can be completed/failed/cancelled) and impact state (can be scheduled/running/paused/completed/cancelled/failed), respectively. Workflow conditions | Comidor Platform
    • Conditions can be added in both cases from the Advanced Conditions tab/Custom condition builder. Add further conditions through a custom condition builder using either database system fields or any custom user fields you have created in User fields and have added in a User form.Workflow conditions | Comidor Platform
    • In more complicated workflows, there might be a need to combine and use more complex Advanced conditions. In these cases, the workflow will check more conditions as shown below. Click on icons “<“,”>” to add parenthesis before or after the condition you want, and select AND, OR between the conditions in each case accordingly. With the “+” and “-” button you add or delete a condition.

    Workflow conditions | Comidor Platform

    Once the above step(s) have been completed, a conditional flow with your brief description is added to your workflow design between the standard start event and the task you have created or between activities/gates.

    Diamonds in the conditional flow refer to the Source state and arrows to Target State, blue: Running, green: Completed, black/white: Canceled, red: Failed, grey: Scheduled, and orange: Paused.

    Email

    The email component is a Throw – Message Intermediate Event. By using it, you send a custom email through each process that is related to the specific workflow. When adding an email element in workflows you can set:

    • The Title, which is one of the required fields.
    • The Parent Stage, which is the stage of the parent process as soon as this step is reached.
    • The Variables, that will appear inside the body of the e-mail. For example, set a variable Key for the Title field of the Process, or another database or custom field. Then use the key of the variable in the email subject or body with ##. When the email is sent, the variable key will be replaced with the value of the field.
    • The Sender, should be a predefined text and/or a custom text type field (probably already given in a custom form).
    • The Subject, can be a predefined text and/or a custom text type field (probably already given in a custom form).
      • Tip: in case of adding both predefined and custom text, the predefined text appears first and the custom one follows.
    • The Email Body, may be a predefined text and/or custom memo-type field.
      Tip: in case of adding both predefined text and custom memo, the custom memo appears first and the predefined text follows.

    Workflow elements | Comidor Platform

    • For more advanced users: you can provide more details in your email body and create a paragraph, or just a sentence with data that were acquired during the process of creation. In particular, you may use the variables you have already set in a sentence with #key# as shown below. You can also apply HTML code for changing the size, the font, and the colors of your message.Workflow elements | Comidor Platform
    • The Recipients as:
      • Addresses that can be a predefined text with email addresses separated with a comma and/or one or more custom text type field(s) with email addresses.
      • Emails of process-related people and/or roles. These people can be users involved in the workflow, users with a specific role(s), any other users, leaders of groups, or all the members of groups.
      • The dynamic recipient option is also available. Select the dynamic assignment option between users, groups, leaders, and excluding leaders. Dynamic assignment, select the recipient from a list of assignee user fields(list free field that fetches users).
    • Attachments as custom binary type fields, or a hardcoded file from your computer.

    Emails are connected with other events/gateways/activities using conditional flow.

    SMS

    Send SMS Notifications in Workflows, provided you have an SMS service provider. Configure the following:

    • The title, which is one of the required fields.
    • The Parent Stage, which is the stage of the parent process as soon as this step is reached.
    • Type the SMS Gateway URL, Username, Password, and API Key (authentication key), as provided by the Service provider.
    • Your text is displayed as the Sender of the SMS and the Recipient’s Phone number.
    • The Recipients, who can be users involved in the workflow, users with a specific role(s), any other individual users, leaders of groups, or all the members of groups.
    • Also, type the SMS message in the Text message.

    Workflow SMS component | Comidor Platform

    Notifications can be connected with other events/gateways/activities using conditional flow.

    Notifications

    Set System Notifications in Workflows defining:

    • The title, which is one of the required fields.
    • The Parent Stage, which is the stage of the parent process as soon as this step is reached.
    • Variables that will appear inside the subject. For example, set a variable Key for the Title field of the Process, or for another database or custom field. Then use the key of the variable in the subject ##. When the notification is sent, the variable key will be replaced with the value of the field.
    • The Subject, which can be a predefined text and/or a custom text type field.
    • The Recipients can be users involved in the workflow, users with a specific role(s), any other individual users, leaders of groups, or all the members of groups. Limit the recipients’ list by adding a role.
    • The dynamic recipient option is also available. Select the dynamic assignment option between users, groups, leaders, and excluding leaders. Dynamic assignment, select the recipient from a list of assignee user fields(list free field that fetches users).

    Workflow elements | Comidor Platform

    Notifications can be connected with other events/gateways/activities using conditional flow.

    Timer

    You can use a Timer to add a delay in your workflow by completing the below basic fields:

    • The title, which is one of the required fields.
    • The Parent Stage, which is the stage of the parent process as soon as this step is reached.
    • Define the Region from the list of available Regional Settings, to exclude non-working days and public holidays from the delay.
    • The delay in days or hours, filling in the corresponding field.
    • Alternatively, a specific date for the timer to wait or a Date field that is used within the workflow.

    Workflow elements | Comidor Platform

    The Timer can be connected with other events/gateways/activities using conditional flow.

    Annotations

    With the Comidor BPMN 2.0 workflow designer, you can add comments to your design. This allows you to explain in detail what is the use of certain tasks or apply a description.

    • Drag and drop the Comment element.
    • In Your comments field, type your comment.

    Workflow annotation | Comidor Platform

    • If you wish, connect your comment with the desired component(s).

    Workflow annotation | Comidor Platform

    • In case you want to modify your comment, click on the pencil icon and proceed accordingly.
  • REST

    When adding a RESTful Web Service define:

    • The Title, which is one of the required fields.
    • The Parent Stage, which is the stage of the parent process as soon as this step is reached.
    • The URL of the resource.
      • You can either add a hardcoded URL, or select a URL field from the list. Ensure the selected field has a value before sending the REST request.
    • The Method, by selecting from GET, POST, or POST FORM.
    • If you require certificates, please select the option and provide the paths for the private and public keys.
    • The Request Header Parameters by giving the Parameter Name and its Value.
    • The Request Body by specifying the Key and its Value as the run-time value of a custom field or predefined value.
      Tip: By clicking on the “+” button you can add as many parameters or keys as required or needed.

      • Alternatively, you can add a JSON in the Free Text Request Body. 
    • The JSON response map by populating the Key and the respective custom Field.
      • Alternatively, click the option Show Response Code, and assign a numeric field to store the Response Code and a memo/text field to store the Response Body. 
      • When you are building a workflow, make sure you use the response code as a condition and plan for all possible scenarios. For example, if the response code is 200, you can proceed to the next step. However, if the response code is not 200, you should add a notification and a timer to wait for some time before retrying the request. The workflow will loop, until you get a successful response. This will help you handle any happy or unhappy scenarios that may arise during your workflow.
    • In case the response includes a file, specify the file name and choose a binary field to store it.

    OpenAI chatGPT

    Integrate ChatGPT and DALL·E into your business processes, by dragging and dropping the OpenAI chatGPT component from the Integration Components list to the workflow design. In the attributes pop-up form, define:

    • The Title, which is one of the required fields.
    • The Parent Stage, which is the stage of the parent process as soon as this step is reached.
      • define the type:
        • ChatGPT
        • DALL·E
      • For ChatGPT, choose the input; a text/memo field where the question is stored, and the Response; a memo field where the answer of the ChatGPT is saved (the previously created fields).
    • integrate ChatGPT | ComidorFor DALL·E, choose the input; a text/memo field where the image description is added, and the Response; a binary field where the produced image by DALL·E is saved.

    integrate DALL·E | Comidor

    Find out more on how to Integrate ChatGPT and DALL·E in your Business with Comidor here.

    Message Queue

    Read an existing Message Queue and create a new one within your workflows with the Comidor Message Queue element.

    Workflow components MQ | Comidor Platform

    • Drag-and-drop the Message Queue element in the workflow design.
    • Specify a Title for the component.
    • Set the Parent Stage, which is the stage of the parent process as soon as this step is reached.
    • In MQ type select MQ Reader if you wish to read an existing MQ
    • Define the Host and Port where the MQ is stored in, and the Routing Key is the title of the MQ
    •  Add your credentials (Username and Password fields)
    •  In Write to: select a memo user field to store the Message Queue that will be read

    Workflow components MQ | Comidor Platform

    • Alternatively, in the MQ type select MQ Writer if you wish to create a new MQ
    • Define the Host and Port where the MQ will be stored in, and the Routing Key is the title of the MQ
    • Add your credentials (Username and Password fields)
    • In the Free Text Message Body type your Message that will be stored in the MQ that you have defined in the Routing Key above.
      • You can also include values of fields (e.g. #app.USR_NAME# for app fields and #this.USR_NAME# for database/process fields)
    • Alternatively, click the option Hardcoded Body. A new field appears to select the user field where you have set the Value with script in a previous step.

    Teams Integration

    With the Teams integration workflow component, create a new event in MS Teams Calendar.

    • Simply drag and drop the Teams integration component in a workflow step and specify its attributes.

    Teams integration component | Comidor Platform

    • Type the Authority, Client id, Secret and the Scope.
    • Define the event description, date, and time, for the task to be created in Teams Calendar as well as the user’s email.

    Google Integration

    With the new Google integration component, designers send API calls to Google Calendar in order to create tasks and to Google Drive in order to upload files to a specific folder.

    Google Drive integration component | Comidor Platform

    • Simply drag and drop the Google Integration component in a workflow design and choose the Google Drive API option in API type.
    • Define the folder ID to store the file in Google drive, the file, and its name; choose workflow fields from the list.

    Google Calendar integration component | Comidor Platform

    • Simply drag and drop the google integration component in a workflow step, and choose the Google Calendar API option in API type.
    • Define the event description, date, and time, for the task to be created in Google Calendar, as well as the email; choose workflow fields from the list.

    Zoho Projects API & Zoho Leads API

    Easily incorporate Zoho Projects & Zoho Leads APIs with Comidor’s drag-and-drop functionality.

    • Integrate with Zoho Projects
    • Integrate with Zoho CRM

    FreshDesk API

    • Integrate with Freshdesk ticketing system with the new Freshdesk API workflow component.
    • Simply add the Freshdesk API component in a workflow step, define the API attributes, and the new ticket is created including the workflow data.

    Salesforce API

    Create and update records in Salesforce, with the new Salesforce API workflow component.

  • Comidor Data (Insert/Update/Delete)

    When adding a Comidor DATA object you can define:

    • The Title, which is one of the required fields.
    • The Parent Stage, which is the stage of the parent process as soon as this step is reached.
    • The Action, by selecting among Insert, Update, Delete.
    • The ID Field (Runtime Value)/Value.
    • The Data Map parameters, which give the Field, Field (Runtime Value), and its Value.
      Tip: By clicking on the “+” button, you add as many parameters or keys as required or needed.
    • The Status and Message.

    Workflow elements | Comidor Platform

    Shell Command

    Include simple or more advanced scripts in your workflow with a Shell Command component:

    • The Title is one of the required fields.
    • The Parent Stage is the stage of the parent process as soon as this step is reached.
    • The Shell Type, select between Unix (sh), Windows (cmd), Windows (Powershell), Platon script, and Sikuli script.
    • The Shell Script Variables, give the Key, the Field (Runtime value), and its Value.
      Tip: By clicking on the “+” button you can add as many keys as required or needed.
    • The Shell Script Body text.
    • The Shell Response.

    Workflow elements | Comidor Platform

    File Reader

    With this component, Comidor enables users to check the existence of a file in a particular path and store it in a binary file.

    • Specify a Title for the component.
    • Set the Parent Stage, which is the stage of the parent process as soon as this step is reached.
    •  In Layout, there are 4 options:
      • choose Read file.

    Workflow elements | Comidor Platform

    • Type the exact File Name with its extension.
    • In Read From Path, select the path in which the file is stored.
    • Click on the “Check Only File Existence”, if you do not need this file to be stored inside the workflow.
    • Alternatively, Save to File, to select a binary field from the list where the file will be stored within the workflow.
    • You can create a text field and set it as the Response field, to see the response of this component.

    Workflow file reader | Comidor Platform

    Secondly, users import data from a file, either from a specific path or from a binary field that is used within the workflow in a previous stage.

    • In Layout, choose Import Data.
    • Type the exact File Name with its extension.
    • In Read From Path, select the path in which the file is stored.
    • Alternatively, in Read From File, select the name of the binary field where the file is stored in.
    • In Entity, define in which table you wish the data of the file to be imported (Units, Apps).
    • In case you select Processes you should also define the Internal Type (General, Project, Issue, etc.).
    • Define the Start to read from row No.
    • Define if the CSV file Delimiter is a semicolon or comma.
    • Set the Date, Time, and Number Format if you have those types of fields in the file.

    Workflow file reader | Comidor Platform

    • In Before Save Script, you can type any additional scripts you wish to execute before the completion of the File Reader component.
    • Then, correlate the fields from the Table you have chosen with the respective columns of the CSV file.
    • You can also create a text field and set it as the Response field, to see the response of this component.

    Finally, there are 2 more options:

    • Read text from File – use this layout when you want to upload a binary field and store its content in a memo field.
      • Save text of File to: select a text/memo field to store the text of the binary file in
      • Read text from File: select the binary field that you want to be read

    Workflow components | Comidor Platform

    • Read text from URL– use this layout when you want to read a file from a URL and store its content in a memo field.
      • Save text of File to: select a text/memo field to store the text of the URL file
      • Read text from URL: select the text field that the URL will be typed so it can be read

    Export Data

    With this element, users can export any data from a workflow to a CSV file and make their own reporting.

    • Specify a Title for the component.
    • Set the Parent Stage, which is the stage of the parent process as soon as this step is reached.
    • In Entity define the table of which you wish the file data to be exported (Units, Apps).
    • In case you select Processes you should also define the Internal Type (General, Project, Issue, etc).
    • Select the fields you wish to be exported and displayed in the CSV file as columns.
    • Type the conditions that you want to be met in your export in Where Condition.

    Workflow export data | Comidor Platform

    • In Export Path, select the path that you wish the file to be stored in.
    • Alternatively, in Binary, select the name of the binary field that you wish the file to be stored in.
    • Give a File Name to the exported CSV.
    • You can also create a text field and set it as the Response field, to see the response of this component.

    Convert Data

    With the Convert Data component, you can convert an excel file to CSV format and store it in a User field inside a workflow. Define the binary field, where you will upload the file, and a memo field where the content of the CSV file will be visible at.

    • Specify a Title for the component.
    • Set the Parent Stage, which is the stage of the parent process as soon as this step is reached.
    • In Converted Type select Excel to CSV.
    • In the field Convert From select the binary user field where you will upload the Excel file.
    • In the Convert To: define the memo user field where the CSV will be displayed in.

    Workflow components | Comidor Platform

    Digital Signature

    • Drag and drop the Digital Signature in the workflow pool.
    • Specify a Title for the component.
    • Set the Parent Stage, which is the stage of the parent process as soon as this step is reached.
    • Signature Document: choose the binary field, where the user will upload the document in PDF format without signatures. After the digital signature component runs, the selected binary field will store the PDF document with the signature included.
    • Select which Model you would like to run at this step, from the list of the Signature Models that you have already created.
    • User’s Signature: choose which user’s signature you want to add to your document.
    • Signature position at Document: refers to the number of the signatures that you need to place in your document (e.g. 1, 2, etc.).

    Digital Signature | Comidor Platform

    Document Creator

    Create invoices, reports, or other types of documents by combining a file template format and fields of the workflow.

    • Specify a Title for the component.
    • Set the Parent Stage, which is the stage of the parent process as soon as this step is reached.

      Document creator | Comidor Platform

    • Set a Template File for your document either in a Form, or upload it in a step of the workflow in a Binary Field, or give the Template Name of a file stored in DMS.
      •  Form: Select the User Form in which you have uploaded the Template Tile. (fixed template scenario)
        • The Template file should be either .docx or .xlsx.
        • The produced file can be either .docx, .xlsx, or .pdf.
        • Apply format options in your template such as font colour, size, alignment, number format, etc. and they will be captured in the produced document.

    Document creator | Comidor Platform

      • Binary Field: Select the binary field in which the Template File will be uploaded during the workflow. (dynamic template scenario)
      • Template Name: Type the name of a file stored in DMS. Keep in mind that this file should be linked with the Account of the process in order to be used as a template file.
    • Define the Variables being used in the Template File by providing the Key and its Value, as the run-time value of a custom field or predefined value.
    • Set the binary field in which you wish to save the Response document.
    • Check the option Return PDF if you wish the produced document to be in PDF format.
    • In Status you can add a text field, to see the response of this component.

    QR Generator

    With the workflow component QR generator, designers generate QR codes with data defined from the workflow with no-code.

    Drag and drop the QR generator component into the design and add it to a workflow step.

    QR generator component | Comidor Platform

    • Define the following:
      • Check the Dynamic field option and choose a text field from the list in the input.
      • Alternatively, leave it unchecked and type your input if you want to add hardcoded text.
      • The produced QR code is stored in a binary workflow field in .png format. Define the desired binary in the Response.
    • Display the QR code in the main process form, either as an attachment of an email triggered by the workflow or as part of a produced document from the document creator component.

    Excel Processor

    Use the RPA Excel Processor element to parse a big excel file or a part of it, and capture values of certain cells into user fields or a whole area and depict it in an excel type user field.

    RPA Excel Processor | Comidor Platform

    • Drag-and-drop the RPA Excel Processor element.
    • Specify a Title for the component.
    • Set the Parent Stage, which is the stage of the parent process as soon as this step is reached.
    • Select a binary field in the Excel Document – the document that you have uploaded in a previous stage.
    • Define the Action you wish the Excel Processor to perform from the following:
      • Parse Excel – use this action to return values of cells or an entire area of the excel and store it in user fields.
      • Get No of Sheets – this action is useful for large excel files with multiple sheets. The response will be the number of sheets in the uploaded excel.
      • Find in Sheet –  use this action when you want to find a certain value in the excel. Define the Search Index.
      • Find the row in Sheet – use this action when you wish to find a specific value in the excel and get the entire row as a response.
    • Check the option Create Excel From Uploaded when you want to define an area of the excel to be saved in an excel type field. The fields Read uploaded from (row), Read uploaded to (row), Read uploaded from (column), Read uploaded to (column), and  Produced Excel Field appear.
    • In Assign to user fields map the user fields with the cells. E.g. if you want to display B2, type in Index r1c1.
    • Select a memo user field to store the Response Field after the RPA Excel Processor runs.
  • RPA Caller/ Receiver

    With the Comidor BPMN 2.0 workflow designer, users can involve RPA agents within their processes. Add an RPA Caller in various steps of the workflow design, to send data from the workflow and perform a series of repetitive actions in the 3rd party system, or an RPA Receiver to perform actions and receive data from other systems in Comidor workflow fields.

    RPA Caller

    • Specify a Title for the component.
    • Set the Parent Stage, which is the stage of the parent process as soon as this step is reached.
    • Select which Script to run at this step, from the list of RPA Scripts that you have already created.
    • Select which Agent to run at this step, from the list of RPA Agents that you have already created.
    • Define the Request Body by specifying the Key and its Value as the run-time value of a custom field or predefined value.

    RPA Caller | Comidor Platform

    RPA Receiver

    • Specify a Title for the component.
    • Set the Parent Stage, which is the stage of the parent process as soon as this step is reached.
    • Select a user field to store the RPA Response after the RPA runs.

    RPA Receiver | Comidor Platform

    Sentiment Analysis

    Use the Sentiment Analysis element in a workflow to identify and categorize opinions expressed in a text field of a workflow, and determine whether the writer’s attitude is positive, negative, or neutral.Sentiment Analysis | Comidor Platform

    • Specify a Title for the element.
    • Set the Parent Stage, which is the stage of the parent process as soon as this step is reached.
    • Select which Model you would like to run at this step, from the list of the Sentiment Analysis Models that you have already created.
    • Define the field in which the Sentiment analysis should be performed (Sentiment Analysis Field).

    Supportive ML

    Add a Supportive ML in the workflow design, to trigger an ML Predictive Model and get a prediction for the Target Field of a workflow.

    • Specify a Title for the component.
    • Set the Parent Stage, which is the stage of the parent process as soon as this step is reached.
    • Select which Model you would like to run at this step, from the list of the ML Predictive Models that you have already created.

    ML Predictive models | Comidor Platform

    Document Analyser

    With Comidor Document Analyser Models, enterprises scan documents, e.g. invoices, and create digital copies. The text that is extracted from the document is saved in a text field and can be used within any workflow.

    Document analyser | Comidor Platform

    • Specify a Title for the component.
    • Set the Parent Stage, which is the stage of the parent process as soon as this step is reached.
    • Select which Model you would like to run at this step, from the list of the Document Analyser Models that you have already created.
    • Document Analyzer Field: the binary field for the file you wish to analyze.
    • You can create a text field and set it as the Response Field, to see the response of this component.

    Text Classification

    Add a Text Classification to classify the selected Target field based on the ML Text Classification Model.

    • Specify a Title for the component.
    • Set the Parent Stage, which is the stage of the parent process as soon as this step is reached.
    • Select which Model you would like to run at this step, from the list of the ML Text Classification Models that you have already created.
    • You will also see the Target field and the Training fields that were selected in the ML Text Classification Model in view-only mode.

    Text Classification | Comidor Platform

    RPA Selenium

    Use an RPA Selenium in your workflow to replicate repetitive manual steps. Use unique CSS Selectors for specifying each element.

    RPA Selenium | Comidor Platform

    • Drag-and-drop the RPA Selenium element in the workflow design.
    • Specify a Title for the component.
    • In the Bot Actions table, define all the actions that you wish the bot to execute step-by-step:
      • Go to URL: use this action to define the URL that the bot should browse.
      • Sleep: use this action to determine how many seconds should the bot wait until the next action. This depends on the loading time of each website.
      • Wait for element: use this action when you are not certain of how many seconds the bot should wait for an element to be displayed.
      • Click: use this action to define where the bot should click.
      • Input-Put: select this action when you wish to add value to a specific element. Specify the unique id of the element in “Value 1” and the value of the field in “Field(Runtime Value)”
      • Input-Get: select this action when you wish to get the value of a specific element. Specify the unique id of the element in “Value 1”.
    • Select a user field to store the Response Code after the RPA runs. If you have used more than one “Input-Get” all the values are stored in the response field, separated with commas.

    Image Classification

    Use one or more Image Classification components in your workflow to specify images to be found within documents.

    • Drag-and-drop the Image Classification component in the workflow design.
    • Specify a Title for the component.
    • Set the Parent Stage, which is the stage of the parent process as soon as this step is reached.
    • Define the binary field that you wish to be scanned in the Template File.
    • Upload the Wanted Image in png which you want to be found in the template file.
    • Specify the Response field to store the outcome of the image classification.
      • In case the wanted image is found in the Template file, the response field gets the Actual value
      • In case the wanted image is not found in the Template file, the response field shows -1.

    Image Classification | Comidor Platform

    Web Scraper

    Use an RPA Web Scraper in your workflow to find information in a selected area of a website and store it inside user fields.

    RPA Web scraper | Comidor Platform

    • Drag-and-drop the RPA Web Scraper element in the workflow design.
    • Specify a Title for the component.
    • Set the Parent Stage, which is the stage of the parent process as soon as this step is reached.
    • Define the URL that you wish to be scrapped. Select a text field.
    • Choose the Search selector from the variety of options (xpaths, class, id, etc) based on the website you are scrapping.
    • Define the Selector (based on the Search option above) Select a text field.
      • You can have a script in a previous step and give a specific value to this field. (e.g. #this.USR_SELECTOR# = “//*[@class=’v2-responsive-table__content v2-pav10′]//tbody/tr/td”)
    • Select a memo user field to store the Response Field after the RPA runs.
  • Set values

    One of the available code components is the Set values, where Comidor enables users to assign values to specific fields. For example, you can give to a date field the value of the current date (#DATE#), make a calculation, define a value (make a checkbox checked, or give an option in a key-value list type field), etc.

    • Specify a Title for the component.
    • Set the Parent Stage, which is the stage of the parent process as soon as this step is reached.
    • In the Data map, define the fields of the workflow and the values you wish to assign to them.
      • Click on the + icon to map more fields
      • Click on the – icon to remove a row.

    Workflow assign values component | Comidor Platform

    Existence check

    With the Existence check component, Comidor enables users to check if a record exists in a particular Comidor application. For example, you can check the existence of a contact or an account based on a defined condition (e.g. email).

    • Specify a Title for the component.
    • Set the Parent Stage, which is the stage of the parent process as soon as this step is reached.
    • Define in which Entity you want to search in if a record exists. Choose from the list of all Comidor applications.
    • Write the Condition of your query (as if you would write it in a script)
    • Choose a Response field to store the response of the check existence code component.
      • If you receive value 1, the system has found at least one query result
      • If you receive value 0, the system has not found any query result
      • You can use the response field in the workflow conditions to activate an alternative flow.

    Workflow check exists component | Comidor Platform

    SQL Creator

    Another code component is the SQL Creator component, which enables users to produce or execute database queries. For example, you can run an insert query in a specific table (e.g. Contacts). The SQL Creator component supports the statements: Select, Insert, Update, and Delete.

    • Specify a Title for the component.
    • Set the Parent Stage, which is the stage of the parent process as soon as this step is reached.
    • Type: define the kind of operation/statement you want to perform. Choose between the Select, Insert, Update, and Delete options.
    • Action: choose between:
      • Produce query – the component forms the statement and writes it on the Statement field so that the user runs it on a DB
      • Execute query – the query is executed and the results (in case of selection) are shown on the Results field
    • Advanced Query: if checked, the advanced query text area is displayed and the users write the query to be executed by themselves
      • Recommended for complex queries which cannot be specified otherwise
    • Define in which Table you want to search in if a record exists. Choose from the list of all Comidor applications.
    • Choose fields: the field (select one field of the table) Value (select an app/process field)
      • in case of insert: the entity which will be inserted has the value to the respective field
      • in case of update: similarly for the entity which will be updated
      • in case of select: the field of the first row of the results is stored to the Value
      • Click on the + icon to add more fields to your query.
      • Click on the – icon to remove a row.
    • Write the Condition of your query (as if you would write it in a script)
    • Order by: in the first row select the field which will sort the results, and in the second, specify if the sorting will be ascending or descending.
    • Choose a Results field to store the response of the code component.Workflow SQL insert | Comidor Platform

    String Utilities

    Drag-n-drop the String Utilities code component into your workflow to perform common functions for a string variable (text field). Currently, the String Utilities code component supports the Index of and the Substring methods.
    By using the Index of method, the user identifies the position of the first character of a string inside another. It is also a way to actually check if a character or a string exists in another.
    The Substring method enables the user to get a part (substring) of a string(text) by defining the start and the end positions.

    • Specify a Title for the component.
    • Set the Parent Stage, which is the stage of the parent process as soon as this step is reached.
    • Select a string field: the text or memo type field to run this code component.
      • Index of
    • Determine the Function Parameters:
      • Value to be found – for Index of: define the value of a field(runtime value) or a hardcoded value to be found in the string field selected above.
      • Start index – for Substring: add a value of the character position to start the substring
      • End index – for Substring: add a value of the character position to end the substring
    • Choose the Result field to store the response of your function.

    string utilities substring | Comidor Platform

     

    JSON Array to Excel

    One of the code components that allows you to get values from a JSON is the JSON Array to Excel. Add this code component into your workflow, get values from a JSON array and give its values to an excel type user field.JSON Array to Excel component | Comidor Platform

    • Give a Title to the component.
    • Set the Parent Stage which is the stage of the parent process as soon as this step is reached.
    • Choose the memo/text field that contains the JSON array in the Input.
    • Define from the list of user fields the excel type field to store the Output.
    • Choose the Result text field to store the response of the code component.
      • The response will be “Error” or “Successful”.

    Deserialize JSON

    Drag-n-drop the deserialize JSON code component into your workflow, get values from a JSON object, and give its values to certain fields. Comidor enables users to map the keys of a JSON object with application fields and assign its values to them.

    • Give a Title to the component.
    • Set the Parent Stage which is the stage of the parent process as soon as this step is reached.
    • Choose the memo/text field that contains the JSON object you want to deserialize.
    • Map the JSON keys with fields in which the values of the corresponding keys will be stored.
      • Click on the + icon to add more keys
      • Click on the – icon to remove keys.
    • Choose the Result text field to store the response of the code component.
      • The response will be “Error” or “Successful”.

    deserialize json | Comidor Platform

    Custom Component

    Comidor workflow customization options are now limitless through the custom components building. Developers can upload their own plugins for custom code to perform any advanced functionality they wish.

    My plugins table

    Manage all your plugins in the My Plugins table and add new code for your custom components by defining the class name and uploading a jar file (code in Java). Only system administrators have access to this unit from the System Administration menu icon> My Plugins.

    My plugins table

    Drag-n-drop the new Custom Component in any workflow, and choose which plugin to run. The response of your plugin can be stored in an app field and used in your workflow.

    • Give a Title to the component.
    • Set the Parent Stage which is the stage of the parent process as soon as this step is reached.
    • Choose the Plugin from the list. Here you will be able to view all the plugin records that the system administrator has created in the “My Plugins table”.
    • Choose a text field in the Output field to store the response of the code component.

    Custom component

     

    Find out more on how to include Code components in your workflows.


Find out more on how to create and manage workflows step by step.

The post Workflow Components appeared first on Comidor Low-code Automation Platform.

]]>
Robotic Process Automation (RPA components) https://www.comidor.com/help-center/rpa-ai-ml-hc/rpa-components/ Tue, 05 Apr 2022 07:00:24 +0000 https://www.comidor.com/?p=21349 RPA Components Comidor RPA components and elements allow you to automate and manage repetitive tasks. With the RPA Caller and RPA Receiver workflow components, you are enabled to retrieve or exchange data with other systems. RPA can be integrated into: Process initiation Report generation File upload in Comidor Document Management System (DMS) With Comidor RPA you […]

The post Robotic Process Automation (RPA components) appeared first on Comidor Low-code Automation Platform.

]]>
RPA Components

Comidor RPA components and elements allow you to automate and manage repetitive tasks. With the RPA Caller and RPA Receiver workflow components, you are enabled to retrieve or exchange data with other systems.

RPA can be integrated into:

  • Process initiation
  • Report generation
  • File upload in Comidor Document Management System (DMS)

With Comidor RPA you can:

  • Automate repetitive tasks
  • Increase employee productivity
  • Speed up time-consuming processes

Prior to involving RPA Scripts and Agents in a workflow design, the following actions need to take place:

  1. Install an RPA agent to the PC (any unit) that you wish to perform RPA tasks
  2. Save Agent’s properties (needed for RPA Agent set up in Comidor)
  3. Install the RPA software (e.g. we used Sikulix for the following examples)
  4. Create your RPA Script including all actions that you want the RPA bot to replicate
  5. Save your RPA Script (Script name needed for RPA Script set up in Comidor)

 

RPA Agents

To access RPA Agents, go to App Factory Icon > RPA & AI/ML > RPA Agents.

RPA Agents | Comidor Platform

  1. Click on the “+” icon at the top of the screen to open the Creation Form.
  2. Type an Agent Name.
  3. The field Code refers to the agent code that you gave in application properties.
  4. Provide other information such as the Operating System, Version, and Description of this Agent.
  5. Select the desired Save option (refer to the Quick Reference Guide).

edit RPA Agents | Comidor Platform

Edit RPA Agents

  1. Go to App Factory Icon > RPA & AI/ML > RPA Agents.
  2. Select the RPA Agent to edit.
  3. Click on the Edit button to open the Edit Form.
  4. Edit the information you want and click on the desired Save option (refer to Quick Reference Guide)

    edit RPA Agents | Comidor Platform

Delete RPA Agents

  1. Go to App Factory Icon > RPA & AI/ML > RPA Agents.
  2. Select one or more RPA Agents.
  3. Click on Delete to delete one or multiple RPA Agents at the same time. A confirmation pop-up box appears.

 

RPA Scripts

To access RPA Scripts, go to App Factory Icon > RPA & AI/ML > RPA Scripts.

RPA Scripts | Comidor Platform

  1. Click on the “+” icon at the top of the screen to open the Creation Form.
  2. Type in the Script Name exactly as you saved the script file in the PC Agent.
  3. Field Integrated Software refers to the software you have installed at the PC Agent.
  4. Provide other information such as Built with and Description of this Script.
  5. Select the desired Save option (refer to the Quick Reference Guide).

Edit RPA Scripts

  1. Go to App Factory Icon > RPA & AI/ML > RPA Scripts.
  2. Select the RPA Script to edit.
  3. Click on the Edit button to open the Edit Form.
  4. Edit the information you want and click on the desired Save option (refer to Quick Reference Guide).

Delete RPA Scripts

  1. Go to App Factory Icon > RPA & AI/ML > RPA Scripts.
  2. Select one or more RPA Scripts.
  3. Click on Delete to delete one or multiple RPA Scripts at the same time. A confirmation pop-up box appears.

RPA Components in a Workflow Design

Comidor Workflow designer offers a variety of RPA components and elements, in order to eliminate manual repetitive tasks and allow employees to focus on more significant ones.

In particular, Comidor RPA components and elements are the following:

  • RPA Caller/Receiver
  • RPA Selenium
  • RPA Document Creator
  • RPA Excel Processor
  • RPA Web Scraper

RPA Caller/ Receiver

Add an RPA Caller in various steps of the workflow design, to send data from the workflow and perform a series of repetitive actions in the 3rd party system, or an RPA Receiver to receive data from other systems and perform actions in Comidor workflow fields.

To access Workflows go to App Factory Icon > Workflow Automation > Workflows

RPA Caller

  • Drag-n-drop the RPA Caller element.
  • Give a Title to the component.
  • Set the Parent Stage which is the stage of the parent process once this step is reached.
  • Select which Script you would like to run at this step, from the list of RPA Scripts that you have already created.
  • Select which Agent you would like to run at this step, from the list of RPA Agents that you have already created.
  • Define the Request Body by specifying the Key and its Value as the Runtime Value of a custom field or predefined value.

RPA Caller | Comidor Platform

RPA Receiver

  • Drag-and-drop the RPA Receiver element.
  • Give a Title to the component.
  • Set the Parent Stage which is the stage of the parent process once this step is reached.
  • Select a user field as RPA Response to store the result of the RPA Receiver once this runs.

RPA Receiver | Comidor Platform

 

RPA Selenium

Use an RPA Selenium in your workflow to replicate repetitive manual steps. Use unique CSS Selectors for specifying each element.

RPA Selenium | Comidor Platform

  • Drag-and-drop the RPA Selenium element in the workflow design.
  • Give a Title to the component.
  • In the Variables table, define all the actions that you wish the bot to execute step-by-step:
    • Go to URL: select this action to define the URL that the bot should browse.
    • Sleep: select this action to determine how many seconds should the bot wait until the next action. This depends on the loading time of each website.
    • Wait for element: select this action when not certain of how many seconds the bot should wait for an element to be displayed.
    • Click: select this action to define where the bot should click on.
    • Input-Put: select this action when you wish to add a value to a specific element. Specify the unique id of the element in “Value 1” and the value of the field in “Field (Runtime Value)”
    • Input-Get: select this action when you wish to get the value of a specific element. Specify the unique id of the element in “Value 1”.
  • Select a user field as RPA Response to store the result of the RPA Selenium once this runs. If you used more than one “Input-Get” all the values will be stored in the response field, separated with commas.

Document Creator RPA Component

Create invoices, reports, or other types of documents by combining a file template format and fields of the workflow.

  • Give a Title to the component.
  • Give the Parent Stage which is the stage of the parent process as soon as this step is reached.

Document creator | Comidor Platform

  • Set a Template File for your document either in a Form, upload it in a step of the workflow in a Binary Field, or give the Template Name of a file stored in DMS.
    •  Form: Select the User Form in which you have uploaded the Template Tile. (fixed template scenario)
      • The Template file should be either .docx or .xlsx.
      • The produced file can be either .docx, .xlsx, or .pdf.
      • Apply format options in your template such as font colour, size, alignment, number format, etc. and it will be captured in the produced document.

Document creator template | Comidor Platform

    • Binary Field: Select the binary field in which the Template File will be uploaded during the workflow. (dynamic template scenario)
    • Template Name: Type the name of a file stored in DMS. Keep in mind that this file should be linked with the Account of the process, in order to be used as a template file.
  • Define the Variables being used in the Template File by providing the Key and its Value as the run-time value of a custom field or predefined value. Excel fields and images stored in binary fields can be added too.
    • For excel fields specify the area to be replaced in the produced document. For example, r:1:2,c:0:4 will include from Rows 2-3 and columns A-D.
    • For images, correlate the binary field that is stored, and define the size in pixels in value. E.g. 200×200.
  • Choose a field to be the name of the produced document from the list of text fields in File Name.
  • Set the binary field in which you wish to save the Response document.

    Document creator | Comidor Platform

  • Check the option Return PDF, if you wish the produced document to be in PDF format. Leave it unchecked, and the produced document will be in the same format as the template.
  • In Status you can add a text field, to see the response of this component.

Excel Processor

Use the RPA Excel Processor component to parse a big excel file or part of it. Capture values of certain cells into user fields or a whole area and depict them in an excel type user field.

RPA Excel Processor | Comidor Platform

  • Drag-and-drop the RPA Excel Processor component.
  • Give a Title to the component.
  • Set the Parent Stage which is the stage of the parent process once this step is reached.
  • Select a binary field in the Excel Document – the document that you will upload in a previous stage.
  • Define the action you wish the Excel Processor to perform, from the following:
    • Parse Excel – select this action to return values of cells or an entire area of the excel and store them in user fields.
    • Get No of Sheets – select this action to get the number of the sheets in the uploaded excel (useful for large excel files with multiple sheets)
    • Find in Sheet –  select this action to find a certain value in excel. Define the Search Index.
    • Find the row in Sheet – select this action to find a specific value in excel and get the entire row as a response.

      RPA Excel Processor | Comidor Platform

  • Select the option Create Excel From Uploaded when you want to define an area of the excel to be saved in an excel type field. The fields “Read uploaded from (row), Read uploaded to (row), Read uploaded from (column), Read uploaded to (column), and Produced Excel Field” will appear to guide through.
  • In Assign to user fields map the user fields with the cells. E.g. if you want to display B2, type in Index r1c1.
  • Select a user field as RPA Response to store the result of the RPA Excel Processor once this runs.

 

RPA Web Scraper

Use an RPA Web Scraper in your workflow to first find information in a selected area of a website and then store it in user fields.

RPA Web scraper | Comidor Platform

  • Drag-and-drop the RPA Web Scraper element in the workflow design.
  • Give a Title to the component.
  • Set the Parent Stage which is the stage of the parent process once this step is reached.
  • Choose whether you want a hardcoded or Dynamic source
    • In the dynamic source option, define fields as host and port; those fields should get value in a previous step
    • Alternatively, type a host and port to the respective fields.
  • Define the URL that you wish to be scraped. Select a text field type.
  • Choose the Search selector from the variety of options (xpaths, class, id, etc) based on the website you are scraping.
  • Define the Selector (based on the Search option above). Select a text field type.
    • You can have a script in a previous step and give a specific value to this field. (eg. #this.USR_SELECTOR# = “//*[@class=’v2-responsive-table__content v2-pav10′]//tbody/tr/td”)
  • Select a memo user field as RPA Response to store the result of the RPA Web Scraper once this runs.

 


Find out more on how to create and manage workflows, including RPA components, and learn about all Comidor Workflow Elements.

The post Robotic Process Automation (RPA components) appeared first on Comidor Low-code Automation Platform.

]]>
Workflow Designer https://www.comidor.com/help-center/process-automation/workflow-designer/ Tue, 02 May 2023 08:10:24 +0000 https://www.comidor.com/?p=20353 With Comidor BPMN 2.0 Designer, you can map and optimize any process that takes place in your company. To access Workflow Designer, click on the App Factory icon >  Process Automation >  Process Designs. Learn how to create and manage workflows step by step. Workflow Design In the Design tab, you can start the Workflow […]

The post Workflow Designer appeared first on Comidor Low-code Automation Platform.

]]>
With Comidor BPMN 2.0 Designer, you can map and optimize any process that takes place in your company.

To access Workflow Designer, click on the App Factory icon >  Process Automation >  Process Designs.

Learn how to create and manage workflows step by step.

Workflow Design

In the Design tab, you can start the Workflow creation.

 

Workflow Components

Basic Components: 

Comidor offers the following BPMN 2.0 basic workflow components:

    • Tasks and escalations
    • Subprocess
    • Email
    • SMS
    • Notification
    • Timer
    • AND/OR/XOR gateways
    • Annotation
    • End

Integration Components: 

Additionally, designers cover their integration needs with the following workflow components:

    • RESTful Web Service
    • OpenAI ChatGPT
    • Message Queue
    • Teams integration
    • Google Integration
    • Zoho projects API
    • Zoho leads API
    • Freshdesk API
    • Salesforce API

Data Components:

Designers use low-code data workflow components for data input and output.

    • Comidor DATA (insert/update/delete)
    • Shell Command
    • File Reader
    • Export Data
    • Convert Data
    • Digital Signature
    • Document Creator
    • QR Generator
    • Table Extractor
    • Excel Processor
    • Graph Creator
    • Blockchain

RPA Workflow Components:

Other workflow components can be added within the workflow design to enhance automation in business processes with RPA and ML/AI. Those components are:

    • RPA Caller/ Receiver
    • Sentiment Analysis
    • Document Analyzer
    • Text Classification
    • Predictive ML
    • Selenium RPA
    • Image Classification
    • Web Scraper

Code Components: 

Users without development skills can add the following workflow code components into the workflow designs to replace commands and queries:

    • Set values
    • Existence check
    • SQL Creator
    • String Utilities
    • JSON Array to Excel
    • Deserialize JSON

Basic Components

Flow Objects

In the Workflow Design panel, you may see flow objects like:

  • Events
  • Activities
  • Gateways

Events

Having Standard Start Event and End Event already in the design area, you can add more flow objects with drag-and-drop in your Workflow. The Start Event Notation can be only one; a workflow may start when:

Still, you may have as many End Events as you needed.

Other Intermediate Events exist:

  • Email: The email element is a Throwing-Message Intermediate Event that can be used to create and send custom emails through your automated process.
  • Timer: The timer element is a Catching-Timer Intermediate Event that adds a timer counting delays in hours or days in your workflow.
  • System Notification: Sends pre-defined or custom system messages to specific Comidor users.

Workflow design | Comidor Platform

Timer boundary Events and Conditional Events are depicted in Comidor differently than within Activities.

Events affect the process flow and have a cause (trigger) and an effect (impact/result).

Activities

Activities refer to work performed by the user(s)/group(s) (atomic or non-atomic) which can be a Task or Sub-Process (sub-process may be of any type: Generic Process, Project, Opportunity, Event, Training, Issue, Ticket, Topic, Job Posting, Campaign).

  • Tasks (atomic or choreography): a task is used when the work is not broken into a finer level, while the choreography task is used when more than one participant is involved and needs to exchange messages. This piece of work is depicted in Comidor with a Workflow Task that can be assigned to one or more Personnel/Group leader(s) of a team/whole team and can be broken down manually to sub-tasks later, while the process is on the go.
  • Sub-process: a process that can be broken down into a set of smaller activities (other workflows with tasks and sub-processes or call activities) and can involve one or more participants.

Workflow design | Comidor Platform

  • Escalation is also available. The user can set specific conditions that will trigger actions or notifications as per the user’s needs and requirements.Workflow escalation | Comidor Platform In the task you wish to apply the escalation to, click on the upwards arrow button. A new window opens, where you can create and manage the escalations for this particular task.

Workflow escalation | Comidor Platform

 

Click on the “+” button to create a new escalation. In the “Basic” tab, fill in the Description, Priority, and Repetition Days fields. Workflow and Stage fields are automatically set and cannot be edited.Workflow escalation | Comidor Platform

In the “Conditions” tab, choose the conditions based on which an action or notification should be triggered. For example, in case the completion of the task is delayed by a specific amount of hours or more, a predefined action could be triggered or notifications/emails could be sent to specified users/groups.

Workflow escalation | Comidor Platform

In the “Actions” tab, you have the option to perform an action in a field related to the mother process or to a global field. In this example, when the task’s finish is delayed over 3 hours, the mother process state will be paused.  The “+” and “-” buttons allow you to add or delete actions.

Workflow escalation | Comidor Platform

In the “Notifications” tab, you can select the users/groups that should receive the notification. In addition, you can add related comments in the “Content” field. The users will receive the notification in the System Notifications button of the main Notification bar.Workflow escalation | Comidor Platform

Similarly, in the “E-mails” tab, you can either select the users/groups that should receive a predefined email or type a specific email address. In order for your email to be sent, you have to set up first an email account.

Once all the above have been completed, click on “Save” or “Save and New” if you wish to create more escalations for this task. Otherwise, click on”Cancel” if you do not want to save your entry.

Gateways

A gateway is used to determine the branching, forking, merging, and joining of paths drawn by sequence flow. In Comidor we have Exclusive, Inclusive, and Parallel gateways.

Workflow design | Comidor Platform

  • Inclusive (OR) Gateway: Inclusive Gateway refers to activating one or more flows when dividing. For incoming, all paths may be taken/fulfilled, from one to all.
  • Parallel (AND) Gateway (Fork/Join): Parallel Gateway refers to dividing into two or more flows (fork). For incoming flows, the parallel gateway will wait for all incoming flows before continues (join).
  • Exclusive (XOR) Gateway: Exclusive Gateway refers to choosing “either/or” and will limit the outcome to exactly one single flow of the output branches.

 

Connectors

We use sequence flow connecting objects in Comidor.

Conditional Flow shows the order of activities; it may hold a condition (conditional flow) or stand as default flow. It connects activities/events/gateways that exist in the same pool/lane.

Learn more about each Workflow Component in detail.


Swimlanes: Pool and Lanes

  • Pool and Lane define the responsibility for activities (tasks/sub-processes)
  • Lanes exist inside a Pool and pool boundaries represent the process that is automated with the workflow
  • We may have a Pool with different Lanes (participants such as the user(s)/group(s) for process automation) or have different Pools with one Lane for different sub-processes of an automated mother process
  • You can add Lanes in the Pool by clicking on the upper-left-side “+” button in the Designer. A Lane name is a free text – you may add a name of a person, department, or role
  • You can click on the pencil button to edit the name of a Swim Lane, and change its position with the arrows.

Workflow design | Comidor Platform

Manage Workflows Design

In general, there are some workflow management actions either referring to Design or Workflow ID:

  • Choose how the conditional flow is depicted in Paths. Choose between Free, Classic, or Classic – Ignore Obstacles based on your preferences.
  • Define the workflow validity period by clicking on the mini calendar icon.Workflow design | Comidor Platform
  • Add private or public tags to this workflow design for easier tracking and search capability.
  • Leave a comment in Notes; people having access to the workflow will be notified accordingly.

 


Click here to view some Workflow Examples.

The post Workflow Designer appeared first on Comidor Low-code Automation Platform.

]]>