Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
XMPro's WorkFlow empowers business users and subject matter experts to configure a workflow application without coding. It consists of the following components:
XMPro WorkFlow is a browser-based interface that employees in your company use to start processes, and to take action on those processes. Processes available in the WorkFlow will differ from company to company and user to user. Processes are custom built to suit your company’s needs.
XMPro WorkFlow Designer Windows application is used to administer role groups, roles and users; as well as to create and amend processes.
XMPro Workflow Monitor, previously known as Business Activity Monitor (BAM) has two components, a browser-based interface that is used to manage jobs, and a Windows service that executes the time-based jobs.
Getting Started - Get to know XMPro WorkFlow and features of each component.
Resources - A goldmine of general articles such as release news, security, and FAQs to elevate your product experience.
Concepts - Get detailed explanations of the platform's essential concepts, like Processes, Activities, Business Groups.
How-To Guides - Follow step-by-step tutorials to help you create workflows.
Administration - Find out how to manage users, roles, business groups. This documentation is only relevant to administrators.
Installation - Learn how to install XMPro WorkFlow. This documentation is only relevant to administrators.
Release Notes - Stay up to date on the latest features and bug fixes.
XMPro places a high priority on security, performing app security checks every 3 months using Veracode. Veracode's comprehensive analysis helps identify, prevent, and fix vulnerabilities through multiple testing methods: Static Analysis (white-box testing), Dynamic Analysis (black-box testing), and Software Composition Analysis.
Our suite of products leverages robust technologies and practices to maintain a high security standard:
WorkFlow, WorkFlow Designer and WorkFlow Monitor are built on .NET 4.8.0.
In the event a vulnerability is identified in any of these technologies, Microsoft promptly releases an update. We integrate these updates into our products and regularly release new versions that include essential security fixes.
Static Application Security Testing (SAST) is a form of white-box testing used to scan an application’s source, binary, or byte code.
Dynamic Application Security Testing (DAST) analyzes a web application through the front end to find vulnerabilities through simulated attacks. This is also called Penetration testing.
Software Composition Analysis scans all the components used in an application for security risks and vulnerabilities.
Designer
100
Not applicable
08 August 2024
WorkFlow
100
91
08 August 2024
Monitor
98
Not applicable
08 August 2024
.NET versions are supported by Microsoft for 3 years after release, as detailed in their support policy. To ensure you have the most secure XMPro offerings, we recommend upgrading as soon as a new version becomes available to take advantage of the latest security updates and features.
This release introduces significant updates, including enhanced encryption processes, new database logging capabilities, and expanded authentication options like OAuth for email security. Additionally, several legacy features have been removed or deprecated, such as OleDb Provider support, advanced browse pages, and certain social login authentications. The update also includes improvements in site configuration, streamlined import/export options, and modifications to ActivityDisplay scripts for better security and functionality.
Enhanced security with new encryption methods
Email logging system for all Activity Server communications
Error logging for activity processing issues
OAuth support added for email functionality
Visio support limited to x64 only (disabled by default)
Connectors integrate to third-party data sources in WorkFlow Designer
The XMPro DLL Connector is designed for any customized integration component, with its own unique operations.
The XMPro Email Connector has been created to send emails synchronously and asynchronously.
The XMPro SQL Connector has been created to handle Create, Read, Update, Delete (CRUD) operations in a database.
The XMPro SQL Read-only Connector has been created to query (Read) data from a selected database.
The XMPro MS Excel Connector has been created to import content to and export content from a Microsoft Excel document.
The XMPro MSWord Connector has been created to import content to and export content from a Microsoft Word document.
XMAdmin Connector is created to allow users to interact with the XMPro databases in a controlled environment.
The XMPro Monitor Connector has been created to return the records and errors for WorkFlow Jobs.
The Barcode connector allows you to either create a barcode or read from a barcode.
The XMPro PowerShell Connector has been created to execute PowerShell commands whether it’s querying scripts or executing them.
The XMPro Web Service Connector has been created to connect to a SOAP web service.
The XMPro WorkFlow platform can be run on a variety of browsers and operating systems.
Google Chrome
Apple Safari
Microsoft Edge
Mozilla Firefox
Opera
The following operating systems are supported for browsers running the XMPro WorkFlow platform:
Windows
Windows 10 or later
macOS
10.13 or later
iOS - mobile
iOS 10 or later
Android - mobile
5 or later
You can rename a database by using the code:
To rename a physical database filename, use the code:
To change the database collation, use the following code:
If you need to find the XML (XSD) schema for a table/view in SQL the following can help:
To calculate the business working days ins SQL, you can use the below:
Create a table with public days details and use them in the query to exclude those days from a date range.
For Example:
Date in the where condition is the column name in the table.
If you ever have the need to move an SQL Server Database from one server or instance to the next then you may come across orphaned SQL Users, for example, the User is present in the database, but it is no longer associated with the SQL Login on the Server.
When that happens you have a couple of options.
You can delete the database user, re-add them, re-grant the appropriate role or rights, and be on your way.
It gets a bit more complicated, though, when the user owns schema(s) in the database.
If you try to delete and re-add them you’ll receive an error similar to the following:
In order to get around that error, you would have to temporarily re-assign the owner of the schema(s) to another user in the DB before being able to delete their User Login.
In addition to the schemas the user may own, they may have been added to roles within the database, they may even have been granted explicit permissions that you would then have to manually reproduce (If you know what they were).
If that’s ‘the case, recreating those rights can be a meticulous task.
A much better alternative is to execute a statement very similar to the one shown below:
It will re-associate the SQL User with the SQL Login and the Schema(s), Roles, and Permissions are retained.
Create a procedure in the database with the input parameter and NEWID() function in the procedure’s body.
The parameter is not going to be used in the procedure but is necessary in order to map the procedure output to a form’s control using an Integration wizard which will require the input a value in the Input Parameter tab.
Map the control on the form to the procedure’s output as follows:
If you run into an issue that a connector is not configurable when selected in Data Integration Wizard, use following code in any OnLoad event and look at the error message:
If you need to monitor changes to tables in SQL Server you can make use of a feature called Change Data Capture (CDC) which is currently available in SQL Server 2008, SQL Server 2008 R2, and SQL Server 2012.
Following are some excerpts from the CDC MSDN page:
What does CDC do?
“Change data capture records insert, update, and delete activity that is applied to a SQL Server table. This makes the details of the changes available in an easily consumed relational format.”
How do you consume this information?
“Table-valued functions are provided to allow systematic access to the change data by consumers.”
“The function that is used to query for all changes is named by prepending fn_cdc_get_all_changes_ to the capture
instance name.”
How do I get started?
“…change data capture must be explicitly enabled for the database. This is done by using the stored procedure sys.sp_cdc_enable_db.”
“When the database is enabled, source tables can be identified as tracked tables by using the stored procedure sys.sp_cdc_enable_table. When a table is enabled for change data capture, an associated capture instance is created to support the dissemination of the change data in the source table.
Now you can access information about changes to your table by using the function fn_cdc_get_all_changes_HR_Employee
“The first five columns of a change data capture change table are metadata columns.
These provide additional information that is relevant to the recorded change.
The remaining columns mirror the identified captured columns from the source table in name and, typically, in type.
These columns hold the captured column data that is gathered from the source table.
Each insert or delete operation that is applied to a source table appears as a single row within the change table.
The data columns of the row that results from an insert operation contain the column values after the insert.
The data columns of the row that results from a delete operation contain the column values before the delete.
An update operation requires one row entry to identify the column values before the update, and a second row entry to identify the column values after the update.
Each row in a change table also contains additional metadata to allow interpretation of the change activity.
The column __$start_lsn identifies the commit log sequence number (LSN) that was assigned to the change. The commit LSN both identifies changes that were committed within the same transaction, and orders those transactions.
The column __$seqval can be used to order more changes that occur in the same transaction. The column __$operation records the operation that is associated with the change: 1 = delete, 2 = insert, 3 = update (before image), and 4 = update (after image).
The column __$update_mask is a variable bit mask with one defined bit for each captured column.
For insert and delete entries, the update mask will always have all bits set. Update rows, however, will only have those bits set that correspond to changed columns.”
When attempting to use the SQL Connector in the WorkFlow Designer may see the following (or similar) error message: invalid object name #temp.
This error will occur in a very specific scenario:
You are attempting to map the SQL Connector to a stored procedure and the stored procedure in question makes use of a temp table (or tables)
This error is caused by a limitation in SQL server, but can thankfully be easily avoided, in one of two ways:
Table Variable
The ideal solution when you encounter this issue is to make use of table variables (@temp) in your SQL Stored Procedure, and not temp tables (#temp).
Disable FMTONLY
Temp tables perform significantly faster than table variables, especially when processing large volumes of data. If the use of a table variable is not appropriate (possibly due to performance reasons), add the following statement to the start of your SQL Stored Procedure, before the temp table is addressed or referenced:
if 1=0 SET FMTONLY OFF
If you do use this approach to address your issue, please ensure that your stored procedure will execute successfully when all input parameters are passed a null value. You can verify this directly in SQL Server Management Studio.
Find answers to some of the most frequently asked questions.
This section provides guidance in using XMPro WorkFlow features as follows:
Site Settings
Allows administrators access to edit application settings in WorkFlow.
Landing Page
Allows administrators to specify site-wide landing page for users.
Site Styles
Allows administrators to change the styles of WorkFlow for the company.
Role Management
Business Group Management
User Management
Process Hierarchy
Allows administrators and creators to create a process hierarchy in the Process Explorer area.
Activity Controls
Activity Configuration Wizard
A tool that will help you to set up the primary properties.
Object Configuration Wizard
A configuration Wizard to set the properties of a Field or Object on an Activity.
XMPro Integration Wizard
Integration to systems or databases or files or devices set on Activity Level.
Fast Fields
Used to set the value of Fields or Objects on your Activity.
Transfer Manager
Allows administrators to export and import processes from one site to another.
Report Designer
Allows creators to create web-based reports for use in WorkFlow.
WorkFlow Connectors Administration
An administration function to manage the WorkFlow Connectors or plugins for your site.
Dashboard Designer
A plugin Framework that provides a standard way to connect WorkFlow tasks with third party systems, for example, CRM, Database, and Microsoft Word, etc.
For more information, click here.
WorkFlow Monitor, formerly known as Business Activity Monitor (BAM) is primarily a service which can perform time-based jobs.
For more information, click here.
New license has been applied successfully, but when logging in, system still showing the error message “License expired or invalid”.
This could be because the number of active users has been exceeded or invalid login details used. Check the number of active users allowed for your license, should this be the problem; check if there are any users that can be deactivated to bring your count down inline with your license or request for an increase in users to your current license by contacting your account manager or support@xmpro.com.
Login error occurred when trying to log on to WorkFlow Designer.
“The system could not log you in because your password expired.”
When a user’s password becomes expired, a user can use the Reset Password functionality from within the WorkFlow to reset the password. Follow the steps:
Go to WorkFlow to request a password reset.
Enter the User Name and E-mail of the user to be reset of the password.
Wait for the email that contains the new password.
Use the new password to log in and straightway, change your password.
For password reset to be working, the site needs to be set up correctly with
SMTP server (in ApplicationSettings via Administration > Workspace).
ServerMailAddress (in ApplicationSettings via Administration > Workspace).
User’s email (in User Editor via Administration > User Editor).
SAML authentication has been configured in XMPro as described in Configure SAML 2 Authentication for XMPro Action Console and the following steps have completed by the SAML2 authentication service provider and XMPro in How to Setup SAML2 Authentication.
The user is successful redirect to the login URL as provided by the service provider. After signing in the user redirect to XMPro causes a continuous loop between the SAML authentication server and XMPro.
The only way to determine the issue is to see the response returned to XMPro. To view this, you will need to enable trace logging for XMPro.
Update your application’s web.config to include a <system.diagnostics> section as shown in the configuration below.
The value for initializeData=”D:\Temp\logs\SAML\idp.log” is the file where the entries will be written to. Ensure that the IIS users have full access to the folder and file.
IMPORTANT: It is not recommended that SAML trace is left enabled in production systems as this may have an impact on performance. The log file can very quickly get big if left enabled.
Some of the most common errors are:
The username provided in the SAML response does not match the username in XMPro. In the response look for xml node saml2:NameID. The value returned for this node must match the username in XMPro.
The partner identity provider value configured in XMPro is not correctly configured. Look for ComponentSpace.SAML2 Verbose: 0 : 12:41:23 AM: Exception: ComponentSpace.SAML2.Exceptions.SAMLConfigurationException entries.
At runtime, the SQLConnector throws an exception with a message: “Failed to enable constraints. One or more rows contain values violating non-null, unique of foreign-key constraints.”
This is a very generic error message that is raised by the .NET framework when it executes the query and populates the underlying dataset that is created by the SQLConnector.
This problem is usually caused by one of the following:
Null values returned for columns not set to AllowDBNull.
Duplicate rows being returned with the same primary key.
A mismatch in column definition (e.g. size of character field) between the database and the dataset.
To resolve this issue, try the following:
If the query was changed or the underlying tables/views used have been changed then remap the query for the SQLConnector using the Integration Wizard. This is especially true if a new field was added to the query.
Run the query natively and look at the results, if the resultset is not too large. If you’ve eliminated null values, then the problem usually is that the primary key column is being duplicated.
Include all the key columns and the columns defined as “not null” into your queries.
From Chrome Version 61 onwards, Upload Control in Object Groups is not responding for older versions of WorkFlow (6.1, 6.5, etc.).
Open Site.Master file in <XMPro_Installation_Directory>
Inside <script type=”text/javascript”></script> place the following JavaScript window.onload function
This will fix the issue of Upload Control not responding to the latest Chrome versions and older XMPro versions.
This version of XMPro by default encrypts the site.config versus an unencrypted file in previous versions. It was found that the site.config was left unencrypted when a site was implemented even though the encrypt function was present.
This encrypting of the file raises some interesting questions around the updating of details specifically the main SQL connection string to the site.
The update of the SQL connection string can be done in the following manner:
You need to be on the web server that is hosting the XMWorkspace (The web services cannot be accessed remotely).
Navigate to (replacing the items in [] as required): http://[Server name]/[site name]/administration/genericwebservice.asmx
Click the UpdateConnectionString.
In the Value text box update the connection string (replacing the [] as required): Data Source=[];Initial Catalog=[];User ID=[];Password=[]
Click Invoke and wait for the popup to state Completed.
Once done an IISRESET or an APP Pool reset for the site in question is required. This is required as your updating the main SQL connection string for the site.
This can be resolved using the following steps:
Uninstall the Google Frame for IE 8 using the Administrative Tools-> Add Remove Programs.
Restart IE and make sure that Google Frame does not appear in the Add Ins.
Open the WorkFlow and the issue will be resolved.
The reason for the unexpected JavaScript errors is that the Dev Express controls that are used within the WorkFlow do not support the Google Frame plugin.
Refer to the following Dev Express Support article: http://www.devexpress.com/Support/Center/p/S33520.aspx
When attempting to attach a file via a File Attachment control, below error is thrown after clicking the submit trigger button:
Error triggering access path: ‘C:\inetpub\wwwroot\XMPro Site\uploads\Document1.xlsx’ is denied.
Allow Modify and Write rights for Users group for the uploads folder sitting under the XMPro web folder.
Follow the steps to achieve this:
Locate the uploads folder under the XMPro Site.
Right-click on the uploads folder to Properties and Edit the Users group.
Tick on Modify and Write to allow the rights and click ‘OK’.
An error is encountered when submitting a task with a file attached. Error displayed:
"Error Triggering: The device is not ready."
Check the Repository Directory setting in the WorkFlow Designer. This can be found under the Administration tab Workspace. Make sure the path exists in the XMPro application server.
A process is created but is not displaying on the website.
The first activity of a process needs to be assigned to a Business Group. Make sure that certain users are part of the Business Group. Click the Activity, then in the Property window click on EventCreate. Assign the Creation Type as ‘First Activity’ and for the Creation Value, select a Business Group.
In WorkFlow, Browse Page fields may not display their values. The underlying field contains the value but it is not displayed.
This is caused by a styling issue on the underlying Dev Express control due to enforcing a “strict” DOCTYPE on all controls. The styling issue causes the font-size attribute to be set to 0 (zero) on all td elements:
To resolve this, override the style in the style.css file in your skin directory by adding the following CSS rule:
This issue has been encountered in v6.5 of XMWorkspace.
For further information see the following ticket in Dev Express Knowledge Base: ASPxTextBox - Font Size with em stopped working
This can be possibly be caused by the following:
The account being used does not have the tracking right to the process the task belongs to.
Tracking permission has not been set up properly for the activity.
For possible cause 1:
Assign the user account tracking right of the process the task belongs to.
Find the role in the All Employees group and highlight the role, then click the Tracking Rights button.
The Tracking Editor window will then open. Select the process from Available Processes to Current Processes by clicking the > button.
Processes can be removed from Current Processes by highlighting and clicking the < button.
When finished, click OK and save.
For possible cause 2:
Highlight the activity, set Allow Tracking to True so that users that have tracking rights to the process can track the tasks in the tracking menu.
Set Allow Value Tracking to True so that users that have tracking rights to the process can track the details of the tasks. If this property is set to False and the Allow Tracking property is set to True, the user can track the process in the tracking menu in the XMPro Workspace, but the user cannot click on the activity in the tracking to see the values entered in that activity.
The attached file size is larger than the upload file size that has been set up in Web.config.
Attach a file that doesn’t exceed the file size that has been set up.
To increase the upload file size, use the following section in web.config file:
This error occurs when trying to open a process group:
“An unhandled exception of type System.Runtime.InteropServices.COMException has occurred.”
This issue applies to XMPro v6.0 or below running under Windows Server 2008 R2.
To resolve this type of issue, register the msscript.ocx.
efore running Regsvr32 msscript.ocx, make sure the msscript.ocx file is in C:\Windows\System32 folder.
Click the Start button, then in the Start Search box, type CMD but to NOT press Enter.
In the Programs section of the displayed list, right-click the command prompt > Run as Administrator and click Continue.
In the open window, type the following command and press Enter:Regsvr32 msscript.ocx.
Verify that the registration is successful.
An alternative way to register the msscript.ocx is by navigating through your computer’s local directory.
When getting an error similar to this in a form/activity:
Check fcEventCreate table in the XMPro database with the EventID of your activity, there might be two rows in fcEventCreate table for this particular activity. Remove the one that is not required should solve the problem.
If we have a Dashboard with few controls, when we open the dashboard from XMPro WorkFlow the dashboard viewer will auto expand the dashboard controls to the maximum space. This will stretch the dashboard controls and may not look good.
Look at the dashboard below where the chart bars are very thick and unnecessarily occupy all the space and stretches the chart on the entire page.
To overcome the auto stretch, we can add a few card controls to the dashboard without a caption. The card control introduces space and will not auto stretch the existing chart control.
So if we look at the updated dashboard in the below diagram we can see the chart control is not auto stretched till the end.
If we look at the design time for the above dashboard:
We can see the card control (without a caption) is placed next to the chart control. This card control will stop the auto expand of the chart control until the end. This way we can better align the dashboard to provide a better look and feel based on end users requirements.
First, you need to remove the Ignore Master Filter set on the group so that the master filters apply to the dashboard controls added to the group. You can access to the Ignore Master Filter setting for a group by clicking on the group and click on the data tab.
For example, you can see in the below dashboard designer, we have a group control and the group controls Ignore Master Filter is on by default, we need to click the ignore Master Filter once to turn it off. This applies the master filters to any controls that are added to the group.
The dashboard below shows when the Ignore Master Filter for the group is off.
You need to change the list values in a drop-down box on refresh.
The list of values in a drop-down are different, based on the current user.
The following code should be placed in the code editor for the control being changed.
When setting the drop-down list, you should trim each value of whitespaces otherwise the control value might not be set properly in code.
The drop-down list is not passed from one activity to another but the value is. Trying to retrieve the list will result in a null reference exception.
Setting the drop-down value to a value that doesn’t match 1:1 with the value in the drop-down will result in the value being blank.
The “Enable Script IDE” option is not showing in WorkFlow Designer.
To display the option, follow the steps listed. Note that one should be a Super Admin to be able to perform the process.
Open the Options Editor by clicking on the file tab.
Select “Options” from the menu.
In the Options Editor prompt, click the “…” button under Access Rights, making sure that Administration is highlighted/selected from the options list.
Select the user that needs access to Script IDE. Under the “Other” tab, tick “Allowed Access” for Script IDE. Then click OK to wrap.
XMPro has a few admin processes that are readily available and needs to be enabled if these processes are meant to be accessed by an admin user.
The out of the box processes are:
Archive Process
Edit Best Next Action Guide
Edit Landing Page Options
Task Reassign
1. Enabling access to the Process Archive process design.
Log in to the site
Go to Options > Administration > Access Rights
In the Access Rights Editor, find the administrator who can access the XMPro Process
Click on the Processes tab
Tick on Read and/or Write for Process Archive
Click OK
2. Find out the Creation Type and Creation Value
Go to the Process Groups > XMPro Processes > Process Archive
Click on Archive Process Task
Go to the Task Properties
In property Event Create, note the Creation Value of the task
For example: Creation value is XMPro Administration
3. Enabling access to Business Group XMPro Administration
Go to Options > Administration > Access Rights
In the Access Rights Editor, find the administrator who can access Business Groups
Click on Business Groups tab
Tick on Read and/or Write for Business Group XMPro Administration
Click OK.
4. Assign User to the Business Group so that the Archive Process can be initiated by the user
Go to the Business Groups > All Employees > [User]
In the Properties, go to Business Groups to see the list of business groups the user is part of
Tick on XMPro Administration and click OK.
5. Verify the process is accessible in WorkFlow
Log in to WorkFlow
Click + to initiate a new process
Select Process Group XMPro Processes
Make sure that Archive a Process is there.
In many enterprise networks, outgoing traffic is only allowed on HTTPS i.e. port 443. In such scenarios, it becomes impossible to connect to a SQL Server running on the default port. A solution to this problem can be to configure SQL Server to run on port 443. Use the following steps to achieve this:
Open SQL Server Configure Manager
Drill down to Protocols for SQL20XX
Right-click on TCP/IP and open Properties
Specify 443 for TCP Port
Restart SQL Server service
You can now connect to SQL Server over port 443.
Please note: IIS cannot be running on port 443 on this particular machine.
An error occurs when trying to log in to the Action Hub after upgrading to version 6.7 with Subscription Manager authentication.
This is caused by the WebsiteUrl setup in the site.config file of the Action Hub folder does not match with the Product URL setup in Subscription Manager.
For instance:
WebsiteUrl setup in site.config of Action Hub:
https://server/actionhub/default.aspx
Product URL of Subscription Manager:
https://server/actionhub/
Correct the WebsiteURL setting in site.config using XMDesigner by the following steps:
Log on to the upgraded website using an XMPro account with administrative rights.
Click on the Administration Tab.
Click the Workspace button.
Search for WebsiteUrl from Name column of the middle panel.
Remove “defualt.aspx” in the Value column.
Save the changes by clicking on the Save button.
On the Apply Server Settings message prompt, click Yes.
There are instances when a select/un-select all needs to be added to a checkbox column in a grid on a form.
The above can be achieved by adding HTML code in the control caption.
Default HTML code caption:
Sample HTML code in Control Caption:
Please note that this method only works from XMPro 6.5 onwards
Please find below example for guidance:
Log on to XMDesigner with Administrative rights account.
Double click on Process Group from Process Explorer
Create a Process Group by dragging an activity icon from Toolbox to the middle panel
Modify the Process Group name and description from the Properties panel
Press Ctrl + S on the keyboard to save the changes then double click on the newly created process group
Modify the Process name and description from the Properties panel
Press Ctrl + S on the keyboard to save the changes then double click on the newly created process
Create an Activity by dragging an activity icon from Toolbox to the middle panel
Modify the Name and the static Activity Description of the activity from the Activity Configuration Wizard
Press Ctrl + S on the keyboard to Save the changes.
Click on the newly created Activity and go to the Properties panel.
Click on the ellipsis button next to the Event Create option
Change the Creation Type to “First Activity” and Creation Value to “All Employees”
Press Ctrl + S on the keyboard to save the changes.
Click on the ellipsis button next to the Object Group option.
Click on the “Add” button in Maintain Object Groups window, to create a new object group
Click on the newly created Object Group and modify the name and Description
Change the Grid option to “True”
Click OK to save the changes.
Double click on the Activity to open Activity Designer.
Drag and Drop a new checkbox control from the Toolbox panel to Activity Designer
Modify name and caption to the below format from Object Configuration Wizard.
Select the Object Group created earlier
Click “OK” to confirm the changes.
Press Ctrl + S on the keyboard to Save the changes
When installing XMAlertService to run under a domain user account, the account must have the right to logon as a service in the XMPro server
This logon can be granted in the Local Security Policy using the following steps:
Logon to the computer with administrative privileges.
Open the ‘Administrative Tools’ and open the ‘Local Security Policy’.
Expand ‘Local Policy’ and click on ‘User Rights Assignment’.
On the right pane, right-click ‘Log on as a service’ and select properties.
Click on the ‘Add User or Group…’ button to add the new user.
In the ‘Select Users or Groups’ dialogue, find the user you wish to enter and click ‘OK’.
Click ‘OK‘ in the ‘Log on as a service Properties’ to save changes.
Ensure that the user which you have added above is not listed in the ‘Deny log on as a service’ policy in the Local Security Policy.
This applies to Windows Server 2012 and above.
In the server, type Server Manager.
In the top right menu, click Manage > Add roles and features.
Click Next on Before You Begin
Select “Role-based or feature-based installation” and click Next.
Select“Select a server from the server pool” and click Next
Select the Server Roles to add and click Next. Under the Web Server (IIS), tick the options per below:
Select the Features to add and click Install. Tick the .NET Frameworks per below:
If you want to pass an information along to a new First Activity one easy way to do it is via parameterization.
Create a submit button in WorkFlow Designer in your activity. Provide an appropriate name and save the activity.
Double click your submit button to open up the Script IDE. Under _OnSubmit, enter the following lines of codes:
<Workspace URL> is the URL of your workspace
The URL you connect to
<Process Group ID> is the value of your Process Group’s ID
Can be found by opening the Process Group your activity belongs to, clicking your activity, and looking in Properties under Identification for the Parent value.
<Activity ID> is the value of your Activity’s ID
Can be found by opening the Process Group your activity belongs to, clicking your activity, and looking in Properties under Identification for the ID value.
<Name of Control> is the name of the control you want to pass a value to
<Value> is the value you want to pass
If you want to pass values to multiple controls, just add an extra &{x}={y} to the end of the first string, as well as the appropriate <Name of Control> and <Value>s at the end of url.
You should end up with something like this:
Save the script and your activity, and you’re done!
The grid layout customization can be used in versions 6.1 and above. This option can be used when a grid has many columns and read-only fields.
This section demonstrates how to customize and save grid layout in forms.
Create a reference label.
Set the value of the reference label on load or refresh as shown in the example below:
In the above example, change the stored procedure name to the one that returns the report and pass in any input parameters if required.
When setting the value to reference label, iframe has a property called gridname which can be any name.
The property columnhide defines whether the columns should be hidden when the grid is loaded.
The property noColumns defines the number of the columns to be shown in the grid by default and the rest of the columns will be added to the show customization filter control window.
The property cn is the connection string.
Below is a sample screenshot of a customized grid layout:
Clicking the Show customization window option, a pop up namely ‘Field Chooser’ will open and a user can drag and drop columns from and to the grid.
When a user clicks on save layout option, the current modified grid layout is saved and whenever a user opens the report, the saved layout is loaded by default.
When a user clicks on load layout, it loads the previously saved layout.
Browse Pages can be configured in object groups via the XMPro Integration Wizard and using the SQL Connector option to create an Integration. However, this method cannot be used if the browse pages are expecting input parameters that are also located within the Object Group, as the integration will fail to differentiate between the different parameters and combine the results. For this Use Case, a custom workaround must be used.
First, open the EditPage popup window under the browse page’s Properties section.
In the Browse Page Editor popup window, open the Data Source script
Add the below code snippet, modifying the input parameters, stored procedure and Data Connection as required.
After saving the Data Source, open the Page Objects window.
In this editor, you will be creating and mapping the columns from the stored procedure to the browse page grid.
Description – Caption that will appear for the Browse Page column
ID – System generated identifier
Index – Used for ordering the Browse Page columns
Name – User specified identifier
Source – Name of the corresponding result column in the SQL query executed
Target – If a row is selected from the browse page, what XMPro field will be populated.
Leave blank if the column is only needed to be displayed within the browse page grid.
Now, your grouped browse page should be returning results dependent on the parameter in its individual row.
ASP.Net 4.0+ comes with a very strict built-in request validation, part of it checks for potentially dangerous characters in the URL which may be used in XSS attacks.
In XMPro this issue will normally occur in the following instances:
A file was uploaded containing an invalid character in the file name and is referenced in the next activity as a clickable link.
Some HTML special characters are present in a Simple Text Box or Large Text Box control during any post back event, i.e. the AutoPostBack option is set to true on a control or when submitting the form.
Invalid file link
If the issue is caused by a file that was uploaded in upstream activities or another process in XMPro, check the “ProbihitedFileNameCharacters” setting in the site.config file. If the value is empty it will default to ‘#,&,+,?,/,:’. To add additional characters, supply the default value plus any additional characters separated by a comma, for example: #,&,+,?,/,:,~,’.This will prevent further files from being uploaded with invalid characters but will not change existing values. The XMPro engine will remove the invalid characters when the file is uploaded.
If it is a link to an existing file already uploaded or references from your site there are the following options:
The best approach is to remove the special characters from the path. These characters should cause no problem if they are passed not as part of the path but as part of the query string. This will necessitate modifying both the web page which is handling the request and those links (or services) which use it. If you absolutely need to allow one of these characters, then you can change the configuration to allow it. The setting to change is the requestPathInvalidCharacters which is part of the httpRuntime section in the web.config file.
In all likelihood even if you do have a httpRuntime section in your web.config file then you won’t have requestPathInvalidCharacters, so you will need to add it. Be aware that you are using this to specify which characters not to allow, you cannot specify which characters to allow. The default character are “<, >, *, %, &, :, \, ?”.
When entering these characters remember to HTML encode them as shown below:
When setting it you can use the empty string, but it is probably better just to remove those characters which you need as show below:
In .Net versions prior to 4.0 you might need to add the requestValidationMode property as well, as shown below:
Correct it at the source. This means the following:
Updating the name of the file in the Repository Directory,
Changing the name of the file in the fcEventValue table.
AND if referenced from another database, correct it there.
Text Box Controls
If the issue is caused by XMPro reading a value from a previous activity or a database with HTML characters, there are three options available:
Replace the Large Text Box with the new HTML Editor Control. Only available in XMPro 6.5 and higher.
Keep the Large Text Box or Simple Text Box and try and clean the value BEFORE rendering the control using the String.Replace() method, e.g. String text = “This should break </br> this is a new line”; activity.SetControlValue(“FI1080CheckingChars”, text.Replace(“</br>”,”\n”)); The problem with the above is obviously that in the worst case scenario you will need to account for more than one type of html tag. Fortunately, only the </br> or </br > characters need removing when using the XMPro Large Text Box or HTML editor type of control. For a more complete html removal functionality search Google or try this url: https://www.dotnetperls.com/remove-html-tags.
Replace the Large Text Box or the Simple Text Box with a Reference Label. The downside of this is that if there is a lot of content, then everything will be rendered on the form. With a Large Text Box where the ReadOnly property is set to True, a scrollbar will be shown if the content exceeds the height of the control.
On December 29, 2011, Microsoft released a security update KB2656356 / MS11-100 for ASP.NET to address a potential Denial of Service vulnerability. In the update, Microsoft introduced a limit to the number of data elements on an ASP.NET form or on a JSON payload. The default limit is 1000 data elements. Exceeding this limit will cause a ThrowIfMaxHttpCollectionKeysExceeded error.
In XMPro, this issue will occur during a post back event, e.g. submitting a form when there are more than 1000 controls on a form. This number is very easy to be exceeded, especially in data capturing type forms.
Fortunately to fix this issue is very easy. To change the default MaxHttpCollectionKeys limit, add the following to your web.config file in the section in the section and put a large value.
Knowledge Base article: An ASP.NET request that has lots of form keys, files, or JSON payload members fails with an exception
Create a SQL Job that runs the “xmi_Update” stored procedure located in the Data Warehouse database.
Create the Job to run the update overnight (“xmi_Update” stored procedure) on the Data Warehouse.
If more frequent updates are required, for example, update every 15 minutes, monitor the SQL Server to ensure there is no excessive load that could have a negative impact on other systems using the SQL server.
The first run of the data warehouse update on a pre-existing XMPro database could take many hours to complete. Please take this into consideration when scheduling the first update.
After the stored procedure has run for the first time amend the “xmi_Update” stored procedure and comment out the command “exec xmi_SchemaRemoveCustomTables”.
The following commands are responsible for updating the data warehouse data from the XMPro Core Database
exec xmi_BatchUpdateTransactionLog
exec xmi_BatchUpdateTransactionValue
exec xmi_SetLastTaskID
When major changes to the XMPro Processes/Activities are made, it is recommended that the “exec xmi_SchemaRemoveCustomTables” command is run.
At all other times, this command should not be run.
The command “exec xmi_SchemaRefresh” will amend any changes to tables or create any new custom tables.
The command “exec xmi_BatchUpdateCustomTables” will populate the custom tables created by the “xmi_SchemaRefresh” stored procedure above.
The default in process session timeout value is 20 minutes. This means that when a user is logged in to the XMPro WorkFlow and is for more than 20 minutes, IIS will recycle the session data resulting in the user being logged out automatically. The below steps show how to configure and amend the timeout period. For more information on Session States and in Process sessions read this article on the MSDN Microsoft developer site.
In the XMWorkspace web.config file (found in the root folder of the website) the following setting is available:
“<sessionState mode=‘InProc’ timeout=‘20’ />”
To amend the timeout value, find the setting in the web.config file and amend the timeout value to the required value.
In IIS, find the appropriate website application pool that the WorkFlow is linked to. Navigate to Advanced Settings (right click->Advanced Settings) and change the setting “Idle Time-out (minutes)” value to the required value.
Before configuring XMPro to use SAML2 to authenticate users, as described in the article: Configure SAML 2 Authentication for XMPro Action Console, the following steps must be completed by the SAML2 authentication service provider and XMPro.
XMPro must provide the following to the service provider to be used to configure SAML2 authentication:
Logout service: https://xmproapplication.com/authentication/saml/sloservice.aspx
Assertion service: https://xmproapplication.com/authentication/saml/AssertionConsumerService.aspx
Service provider name (SPID): Set it to the domain name of the XMPro application e.g. xmproapplication.com
The service provider might require a metadata file that contains all this information above. An example provided below.
The service provider will provide the following to XMPro.
PartnerIdentityProviderName: samlprovidername.com
SingleSignOnServiceUrl: https://samlprovidername.com/idp/profile/SAML2/Redirect/SSO
SingleLogoutServiceUrl: https://samlprovidername.com/idp/profile/SAML2/Redirect/SLO
SAML signed certificate: Copy this into the root folder of the XMPro website.
The service provider may provide XMPro also with the metadata file generated by the SAML2 server that will contain the information above. An example snippet from the file is shown below:
To view CAD drawings currently in XMPro, the drawings are loaded as images or as a hyperlink.
The option below embeds the CAD drawings directly into the activity.
To configure and load CAD drawings inside a XMPro activity:
Create a reference label and set the value using the CAD link. Below is an example:
The XMPro WorkFlow supports four modes of authentication, namely:
XMPro: Users are presented with an XMPro login screen
Windows: The Action Console will attempt to log the user in automatically using the user’s active Windows credentials. The domain username must match the username of the user in XMPro.
SAML 2: The WorkFlow will attempt to log the user in automatically using the user’s associated SAML credentials. The domain username must match the username of the user in XMPro.
Mixed: A mixture of the (aforementioned) ‘XMPro’ and ‘Windows’ and ‘SAML2’ authentication modes. The WorkFlow will first attempt to log the connecting user in using the user’s associated SAML2 credentials, should this fail Active Directory credentials.
XMPro and Windows authentication have been around for a long time in the XMPro WorkFlow, whereas SAML 2 authentication has been available only from XMPro WorkFlo v6.1. This article will focus on the configuration of SAML 2 authentication for use in the XMPro WorkFlow.
The following settings are set from the Workflow Designer that is part of the XMPro Agile Design Studio.
On the Settings tab click on Workspace in the General section. This will open the ApplicationSettings window. Change the value of the AuthenticationMode to ‘SAML2’ or ‘mixed’. It might be required to set the mode to ‘mixed’ to allow access when using the Workflow Designer. Click on Save or Ctrl+S to save your changes. You will be prompted to ask if you want to reload Server Settings. Click No. The server settings will be reloaded as the last step.
On the Settings tab click on SAML2 in the Custom Settings section. Change the ‘enabled’ value to ‘true’ as shown below. The other two ‘key’ type settings will be configured in the next steps.
On the Settings tab click ServiceProvider in the Custom Settings section. It will show the following values that needs setting. After setting the values Click on Save or Ctrl+S to save your changes. *ServiceProviderName: The provider name. Set it to the domain name of the XMPro application, e.g. xmproapplication.com
*AssertionConsumerServiceUrl: the service provider’s assertion consumer service (ACS) URL. The assertion consumer service URL is the endpoint at which the SAML response is received.
ServiceProviderCertificateFile: The certificate file path. The file path is either absolute or relative to the application folder
CertificatePassword: The certificate file password. (*) are required fields.
On the Settings tab click on PartnerIdentityProvider in the Custom Settings section. It will show the following values that needs setting. After setting the values Click on Save or Ctrl+S to save your changes.
PartnerIdentityProviderName: The provider name that will be providing the service.
SignAuthnRequest: A false or true value indicating whether to sign authentication requests.
WantSAMLResponseSigned: a false or true value indicating whether SAML responses should be signed.
WantAssertionSigned: A false or true flag indicating whether SAML assertions should be signed.
WantAssertionEncrypted: A false or true flag indicating whether SAML assertions should be encrypted.
SingleSignOnServiceUrl: The partner identity provider’s single sign-on service URL.
SingleLogoutServiceUrl: The partner provider’s single sign-on service URL.
CertificateFile: The certificate file path. The file path is either absolute or relative to the application folder.
OverridePendingAuthnRequest: A false or true value the flag indicating whether a pending authentication request may be overridden and an IdP-initiated SAML response received. If a service provider sends an authentication request, then it expects the SAML response it receives to come from the identity provider it sent the authentication request to and that the SAML response is in response to this authentication request. If a different identity provider sends a SAML response or the expected identity provider sends a SAML response but it is not in response to this authentication request, this is treated as an error if this flag is false. If this flag is true then these restrictions do not apply. Setting this flag to true supports an SP-initiated SSO flow being supplanted by an IdP-initiated SSO. All the fields are required.
The last step is to apply the changes to the site. On the Home tab in the Deployment section click on the Reload Server Settings icon and click Yes when prompted. Please note that you might need to reset the XMPro application pool for the changes to take. This is normally not required.
There are some instances that you might want to change the view of the dashboard chart control, due to layout and space constraints.
By default, the dashboard chart plots the “Arguments” in X-Axis and “Values” in Y-Axis which will present the data as below:
The chart presents information regarding “Top 10 Most Time-Consuming Users”. On X-Axis, users are plotted and on Y-Axis the time is plotted for each user. We can also clearly see from the chart that the alignment of the X-Axis labels is not clear.
The view might be better in this case if the users are plotted on Y-Axis and the Time is plotted on X-Axis.
To change the view of the dashboard chart control, follow the steps below,
Step 1: Click on the chart.
Step 2: Click on the Design tab and click on the Rotate tab which will then rotate the view.
The updated chart below is simple, clear and presents the information without layout issues.
Often there will be a need to define global parameters in dashboards to pass on values and filter data.
Step 1: Open Dashboard Designer.
Step 2: Click on Parameters on the top tool bar.
Step 3: In the open Parameters Page, you can define your global parameters by providing Name, Description and a Default Value.
In this example, the default value is set to 90 and the global variable name is ‘ExcludeActivitiesGreaterthanDays’. This Global parameter can be used in the dashboard to filter data.
Now we have defined our global parameter, we now want to use the Global parameter to filter data records that are present in a dashboard chart control.
Step 1: Right click the chart control and click on “Edit Filter” where we wanted to apply filter to exclude all records where the data is more than the global parameter value.
Example:
This presents Top 10 Time Consuming Activities, excluding records wherein the activity time is greater than 90 days.
By default, the chart control plots the arguments on X-axis and plots the values on Y-axis as shown in the image below.
The chart presents the users on X-axis and time consumed on Y-axis. If I want to find out for each user the exact time consumed, this representation is a bit difficult and not clearly visible. In this case, it might be beneficial to display the value for each user inside the chart bar.
Step 1: Click on the existing designed chart in the dashboard designer.
Step 2: Click on the little Chart Icon next to the Values.
Step 3: In the opened ‘Series Options’ page navigate to Point Label Options, select ‘Value’ in Content Drop Down and Select ‘Inside’ in Position Drop Down and click OK.
This will now present the value associated with each user inside the chart bars as shown below.
Often there would be a requirement that you want to view the top 5 or 10 data points in a chart by default.
Step 1: Click on the chart where you wanted to view 10 points at a time.
Step 2: Click on the “Design” tab and click on X-Axis settings.
Step 3: In the open X-Axis settings page, Click on “Limit visible points”, mention the exact number of items you wanted to view at a time and click OK.
Step 4: The chart will now present only 10 data items.
The Process Model defines the relationship between different components in workflow in XMPro.
The Process Group is the topmost structure in a process. It is a logical grouping of different processes. For example, Company ABC has several human resources processes. An employee can request leave, put in an overtime claim, place a grievance against a colleague, or put in a resignation. These are separate processes, but they all fall underneath an HR Related Documents heading. There is no wrong or right way to group your processes. As mentioned already, it is a logical grouping.
The logical grouping of activities, events, or steps that form part of a process, for example, the Leave Application process could have two steps: Request and Authorization. A process can be a Structured Process (one-step after the other and pre-define) or an Unstructured Process (the flow cannot be defined at solution design time but is determined at run-time) or a Hybrid Process (combination of structured and unstructured characteristics in one process).
A specific step in a process. It will be the user interface for that step (web form or a screen), for example, the Leave Application (screen interface or web form) will be the first Activity in the Leave Requisition process. The Leave Application Authorization will be the second step or Activity in the Leave Requisition process. One Process can have multiple activities.
An activity field has a specific type, e.g. Text Box, Label, Checkbox, etc. that is placed on the user interface for the activity.
Process Groups, Processes, Activities, and Objects are all configured in the WorkFlow Designer.
XMPro has Visio embedded for a rich process design experience. To use Visio as a process designer a licensed installation of Visio 2019 (64bit) or later is required. By default, this option is disabled.
To enabled Visio Designer go to File Tab/Options/General.
XMPro supports Visio stencils. These stencils enable business users to have basic flow charts or complex Business Process Modeling Notation (BPMN) and Case Management Modeling Notation (CMMN) based models.
XMPro is installed with a default XMPro stencil that is a combined subset if BPMN and CMMN. It has all the shapes to support structured, unstructured and hybrid processes.
The following shapes are supported in the XMPro stencil:
XMPro step from one activity to another through a trigger mechanism. XMPro supports three trigger styles that are all accomplished without coding:
Simple Trigger: Simply draw a connector from one activity to another and name the connector (arrow) with the trigger name. This will automatically create the trigger and name the button on the activity form.
Conditional Trigger: Draw a connector from a decision block (diamond) and double-click each outgoing connector to use XMPro Conditional Routing wizard to set up the routing rules. This can be as simple as Approve or Reject or as complex as an approval matrix and nested conditions.
Dynamic Allocation Trigger: XMPro’s unique Dynamic Allocation Logic allows a process designer to set up dynamic or unstructured routing for case style processes where connectors or arrows cannot be defined.
The XMPro stencil supports decisions as part of the process models. The simple diamond shape with a blank center represents a typical IF decision. It does include nested IF’s in the support wizard that sets up the decision logic.
The diamond shape with the circle represents a process split and the diamond with the Plus (+) Sign represents a join after a process split. The default configuration is set up as an AND gate which means all the legs need to be completed for the joined activity to happen. It is often referred to a WAIT action that waits for all the preceding activities to complete.
XMPro supports a range of right-click wizards in the Visio design environment.
This XMPro Activity Wizard allows you to set the properties of an Activity (form or screen).
Right-click an Activity Shape to show the XMPro Wizard and the XMPro Data Wizard:
The General tab shows the basic Activity options.
The Advanced tab shows additional notification and escalation options, including behavior and styling settings.
The XMPro WorkFlow Designer is a Windows application that is used to configure business processes in XMPro.
The Designer has the following sections:
The ribbon bar at the top of the window is the main navigation menu and has several tabs and menu items. Many of the items on the menu are access controlled and only certain users may be able to use them. If an item is greyed out, it means that a user does not have the necessary rights to access the item.
The following sections cover the different tabs of the ribbon bar and its menu items.
The File tab contains the following menu items.
XMPro has Visio embedded for a rich process design experience. XMPro supports Visio Stencils. This enables business users to have basic flow charts or complex Business Process Modelling Notation (BPMN) and Case Management Modelling Notation (CMMN) based models. XMPro also supports these business or industry specific modelling notations.
An Activity specific step in a process. It will be the user interface for that step (web form or a screen), for example, the Leave Application (screen interface or web form) will be the first Activity in the Leave Requisition process. The Leave Application Authorization will be the second step or Activity in the Leave Requisition process. One Process can have multiple activities.
Next Activities are triggered by users by completing the information required in the web form and then submitting by clicking on the relevant action option. Activities have notification and escalation rules associated with them.
An activity has the following properties:
The Event Create property of an activity specifies who must do, or who can access an activity.
What you choose in the Creation Type property, will determine what you can choose in the Creation Value property.
The Administrator Model defines the way in which a company’s organizational structure is captured and managed within XMPro. XMPro is a role-based solution and access control is determined by the Role of a User and the Business Groups that the user's role is associated with.
XMPro is a role-based solution and access control is determined by the Role of a User and the Business Groups that the user’s role is associated with.
A Business Group is a logical group of business roles that have access to the same processes. Typical examples for Business Groups are:
Sales Representatives
Finance Clerks
Quality Special Interest Group
Oversight Committee
C-Level Executive
All Employees
Any number of Roles can be associated with a Business Group.
It is used in various routing and approval scenarios and is specifically for access control to start a new process. Only users/roles that belong to the Business Group designated to start a new process will see that process option in their list of available New Processes.
Creating your Business Group(s) is always the first thing you do in your new site.
A role group can have more than one role inside it.
A role can be part of more than one group.
A role is typically the position on the organizational diagram. Typical examples are:
Financial Controller
Sales Manager
Maintenance Superintendent
Account Manager
SHEQ Inspector
A User is associated with a Role and the Role is primarily responsible for the completion of the task. Only one User can be linked to a Role at any point in time, but users can change roles as they get promoted, move or leave the organization.
This Role-based approach ensures the integrity of process audit trails as it will show a User in the Role that the person had at the point in time when the transaction was submitted. It will, for example, show that Keith was a Sales Representative when requesting a credit increase for a customer, even though Keith is now a Sales Manager as a result of a promotion.
Provides a unique login in the XMPro WorkFlow.
A user can only be assigned to one role.
A role can only have one user assigned to it.
A user is a named individual that is linked to a role. This is a one-to-one mapping and represents the person that physically transacts on the system.
User information is stored for both current and past users to ensure the integrity of audit trails. Users are marked inactive when they leave the employment of the organization but remain on the system to ensure that the history of all transactions is correct.
Users can change Roles in the XMPro solution, but they cannot belong to multiple Roles at the same time.
When creating Business Groups, Roles or Users you create them in the following sequence:
When deleting Business Groups, Roles or Users you need to do it in the following sequence:
The XMPro Workflow Monitor, previously known as Business Activity Monitor (BAM) is primarily a service which can perform time-based jobs.
It has a Controller/Mediator and a Database to store its data. It communicates to WorkFlow using an XMPro API while the WorkFlow and any third-party can communicate to a WorkFlow Monitor using the WCF Service exposed by it. It has a default UI which is an ASP application and uses the same WCF Service to communicate.
A job is a combination of following
Schedule
Trigger
Action(s)
A Schedule defines the timing of the Trigger to be evaluated at. It is defined by the end-user through UI at the time of configuring a job. Currently, it provides following Recursive scheduling options:
WorkFlow Monitor Controller continually evaluates each job’s next time to occur. If the time to occur is current it creates a Thread and assigns it the relevant Trigger.
A trigger physically exists in a folder which WorkFlow Monitor has access to, specified in the config file. It is a DLL extended from a generic DLL (XMMonitor.dll) provided with some built-in functions, for example, checking for new Tasks, etc.
A trigger’s primary responsibility is to evaluate if the Job needs to be executed or not. A trigger may get data passed in as static parameters at the time of configuration.
If the trigger evaluates to true it calls the current job’s associated Action(s). The outcome of Job is logged to database at the end of execution of all Actions.
An action physically exists in a folder which WorkFlow Monitor has access to, specified in the config file. It is a DLL extended from a generic DLL (XMMonitor.dll) provided with some built-in functions, for example, creating a Task, sending an email, creating an XMPro User, etc.
Users can create a custom Action which will have access to all standard functions which can be mixed and matched for individual requirements.
Every Action has a set of inputs and outputs in a form of Named Value Pairs which in case of Sequenced Actions are passed from one Action to another.
The XMPro WorkFlow is the interface that the general employee is going to work in. It is a browser-based interface that employees in your company use to start processes, and to take action on assigned tasks. Processes available in the WorkFlow will differ from company to company and user to user. Processes are custom built to suit your company’s needs.
If the site uses XMPro Authentication, the user will have to log in to the XMPro WorkFlow using a username and password.
Providing a valid username and password will allow the user to access the home page of the site.
If the user provides an invalid username and password or the organization license has expired, he/she will be prompted to try again.
If the site is using Windows Authentication Mode, the user will not be required to provide valid login information. XMPro will authenticate the user against the Active Directory. When the user has logged in successfully the user will be logged authenticated as valid user in WorkFlow.
If the site is using SAML Authentication mode, the user will be redirected to the single sign-on URL configured in application settings. When the user has logged in successfully the user will be logged authenticated as valid user in WorkFlow.
On the home page the user will view and access the tasks assigned to the user or the business groups that the user belongs to, start new processes, and track processes in progress or completed.
The look and feel is customizable. The images, colors, fonts, and layout can be modified to fit the company's profile. These are called skins, and can be configured in the application settings. XMPro also use themes to help standardize the look and feel throughout the site.
The XMPro WorkFlow has a collapsible vertical menu bar on the left of the page. The menu bar consist of four sections with submenus.
The Dashboard displays all configured dashboards available to the current user. It also allows the user to configure dashboard within WorkFlow.
The Home menu option contains three sub options.
To-Do is where logged in user can view the tasks or activities to which the user has to respond or can take action on. If processes and activities are setup correctly, users can view To-Do item by "All Tasks", "Overdue", "Current", "Upcoming" and "Unscheduled".
There are three views for the user to choose from “Own”, “Follow” and “Involved”. “Own” allows the current user to view their own pending tasks, those processes which the user started themselves. “Follow” allows the user to view processes that the current user has tracking rights on. “Involved” allows the user to view those processes in which the current user has been involved with, i.e. The current user has completed an activity which he/she did not start the process as well as does not have tracking rights on.
There are three views for the user to choose from “Own”, “Follow” and “Involved”. “Own” allows the current user to view their own completed tasks, those processes which the user started themselves. “Follow” allows the user to view completed processes that the current user has tracking rights on. “Involved” allows the user to view those completed processes in which the current user has been involved with, i.e. The current user has completed an activity which he/she did not start the process as well as does not have tracking rights on.
The Report allows current user to display all reports configured in WorkFlow Designer.
The Manage functionality within XMPro is available to Super Admin users of XMPro such as site administration. The manage functionality allows the super admin user to manage following:
Users
Roles
Business Groups
Meta Data
Site Settings
Site Styles
Dashboard
When accessing the ‘History’ tab in the WorkFlow Monitor UI (The XMMonitorUI Web App is installed alongside the XMMonitor service), if the history does not display and you notice the URL in the browser address bar contains the text “aspxerrorpath=/XMMonitorUI/History.aspx”, it means that an error has occurred in loading the job history.
In order to see the full error message, you will need to turn off custom errors in the web.config file. Set mode=Off in the customErrors element:
You should then see a more detailed (Yellow Screen Off Death) error message. If the error you are receiving is, The maximum message size quota for incoming messages (65536) has been exceeded. To increase the quota, use the MaxReceivedMessageSize property on the appropriate binding element., it means the size of the history records is larger than the default allowed transfer size of the XMMonitor API.
To resolve this you need to increase the maximum allowed message size in the web.config file by adding the maxReceivedMessageSize attribute to the binding element and setting its value to an appropriate value. The example below increases the size to 256KB (from the 64KB default).
When installing XMAlertService to run under a domain user account, the account must have the right to logon as a service in the XMPro server.
This logon can be granted in the Local Security Policy using the following steps:
Logon to the computer with administrative privileges.
Open the ‘Administrative Tools’ and open the ‘Local Security Policy’.
Expand ‘Local Policy’ and click on ‘User Rights Assignment’.
On the right pane, right-click ‘Log on as a service’ and select properties.
Click on the ‘Add User or Group…’ button to add the new user.
In the ‘Select Users or Groups’ dialogue, find the user you wish to enter and click ‘OK’.
Click ‘OK‘ in the ‘Log on as a service Properties’ to save changes.
Ensure that the user which you have added above is not listed in the ‘Deny log on as a service’ policy in the Local Security Policy.
This error relates to the configuration of Actions or Triggers and can be due to:
Multiple Actions were configured that use the same dll. The same assembly was uploaded every time in the field below shown in yellow.
Multiple Actions were configured that use the same dll. The same assembly was uploaded once and not again for the subsequent actions.
To resolve the issue, you will need to:
Step 1:
Navigate to the C:\Program Files (x86)\XMProPty Ltd\XMMonitor\Actions and/or C:\Program Files (x86)\XMPro PtyLtd\XMMonitor\Triggers folder. There should only be one instance of the dll you uploaded. If for example you configured 3 actions, and for each you attached the dll, you will see the following:
Delete all the dll’s not needed. In the example above delete the v2.0 and v3.0 dll’s.
Step 2:
Open the SQL Server Management Studio and navigate to the XMMonitor database. It will normally be installed as CompanyName_XMMonitor. Open the Action table. You will see one of the following:
If the dll was attached for each of the actions, you will see the following:
If the dll was attached once and not for the other actions, you will see the following:
The resolution in both cases is the same. Ensure that the value specified in the DLLFileName field is the same for All Actions and is the same as found in the Actions folder. The result should look like this:
Step 3: Restart the XMMonitor service
Step 4: Continue to configure the Jobs.
It has been reported that the task / activity link in reminder emails is not working.
The email link was something like “http://localhost/XMPro/…. “.
From the email context, the localhost is the server from where the email is accessed and the following 404 page not found error.
Modified the Site URL for XMPro XMAlert Service using XMPro XMManagement Console to point to the server URL instead of local host and saved the configuration.
Restart the XMAlert Service. The link in the reminder emails is working as expected.
To use the file monitor function of XMAutomate requires three areas of setup.
The first being the XML/CSV source file, a sample follows:
Note: When using XML a root node is REQUIRED.
The second is the activity that will be triggered:
Note: The file attachment object is required to load the original document (can be access through the process as required).
The third being the XMAutomate configuration setting:
The file prefix can be used to separate different XMAutomate activities depending on the requirements (Can be left blank).
Note: The groupnode being used in reference to the source XML file. RepeatingNode is used when populating an object group using a common node in the XML.
Our project has been configured so that XMAutomate will monitor a folder path and initiate a process if there is a new file in the folder.
This is working fine until today until a few configuration changes were made in the process and then deployed the process again.
From then onwards, XMAutomate is not invoking the process (or) processing the files.
An attempt to debug and see why XMAutomate is not able to invoke the process even when there are files to be processed.
Where are the error log files or what is the issue?
In event viewer, custom views ..> Administrative Events, the error log for the XMAutomate was found.
The script in the Process is having an extra ‘}’ as a result the files are not picked and processed by XMAutomate.
The script was modified and everything is working as expected now.
If you cannot submit the activity manually, then the automated services will not be able to.
Users are getting a 404 error when clicking the link in the notification e-mail.
The link looks as follows:
(The [siteurl] has been blanked out for the above)
The templates have a [LINK] placeholder which is correctly set.
The problem is because the myActionItem has been renamed to ActionItem and the URL is being redirected incorrectly.
To resolve, create a new file in the website folder called myActionItem.aspx and add the following code into it:
Added a debug option to help identify when emails are not being generated where the issue is being generated from.
Stop the service
Close the MMC console
Copy the two files into the installed service directory (C:\Program Files\eXomin\XMAlert Service\[Service Name])
Open the XMAlert.Service.exe.config in a text editor and add the following:
The enable should be set to false in production and set to true when a debug is required When set to true the debugLocation is used to store the file it generates. This can be any location on the machine
Close the text editor
Copy the file XMAlert.Configuration.dll to C:\Program Files\eXomin\XMManagement Console\ and override
Open the MMC console and restart the service
The reason for the text editor adding and enabling/disabling is so that the option is not accidently switched on via the MMC console.
It is a debug option and should only be used as required and then disabled. Please ensure that when you enable the logging to disable it, otherwise the file is going to grow and performance and space starts becoming an issue. Please contact your implementation partner for details on the above.
For more information, click .
For more information, click .
Allows administrators to manage Roles. For more information, click .
Allows administrators to manage Business Groups. For more information, click .
Allows administrators to manage Users. For more information, click .
For more information, click .
For more information, click .
For more information, click .
For more information, click .
For more information, click .
For more information, click .
For more information, click .
For more information, click .
For more information, click .
Allows creators to create web-based dashboards for use in WorkFlow. For more information, click .
Refer to page for details each option found in the General tab.
Refer to page for details each option found in the Advanced tab.
When you click in the Event Create property of the activity, you will see an options () button. If you click on this button, the Specify Creation Rules window will open. It consists of two properties that work together to determine who must do the activity.
Using the Site Styles management functionality, administrators can change the styling inside WorkFlow for their company without the need to resort to changing CSS or themes. For more information, click .
When creating create the Jobs in it keeps on showing a message “callback request failed due to internal error” then it reverts back to the login screen.
Another item to check when the automated scripts are not behaving is to try and submit the manually.
Toolbox Window
The Toolbox contains all the structures needed to create the different components of your site.
Properties Window
Displays the properties of the item selected in the work area. You edit the properties of the selected item in this window.
Server Explorer Panel
Displays a tree view of your Process Groups, Processes, Business Groups, and Roles.
New Site File
Click to enter the URL of the XMPro site to which you want to connect.
Open
Click to open an XMPro Site File.
Recent
Click to access any recent WorkFlow Designer Workspaces.
Save
Click to save last changes made.
Save All
Click to save all open documents and pending saves.
Log Off
Click to log off of the current connected WorkFlow Designer Workspace.
Exit
Click to exit the WorkFlow Designer.
Options
Click to change the WorkFlow Designer options.
Integration Group
Connectors Administration
This Administration function enables you to manage connector plugins for your site.
Version Manager
This function enables you to manage process versions. You can create new versions, activate versions.
Designers Group
Report Designer
The Report Designer enables the user to quickly design and implement reports. The wizard contains a Designer, a Print Preview as well as an HTML view.
Dashboard Designer
The Dashboard Designer enables the user to quickly design and implement dashboards.
Deployment Group
Transfer Manager
Allows you to export and import processes from one site to another.
Launch Workspace
Launches your solution in your Browser.
Reload Server Settings
This function refreshes the Workspace settings (any changes made on the Settings tab of the Ribbon Bar).
Management Group
Language Manager
This tool allows you to change to a language of your choice. The text of menus, static text in the Workspace, as well as the text of objects (fields) within activities (screens) will be changed. Only a user with Administrator rights will be able to change the language.
Setup Validation
Tests the integrity of your Roles and Users. It will not make any changes to your site.
Configuration Encryption
This tool encrypts your site configuration file. Once the file is encrypted, it cannot be modified using a text editor. It is imperative that all site.config files are encrypted prior to going live. The security of your site cannot be guaranteed if the file is not encrypted.
Account Group
Account Lockout
Allows an Administrator to unlock locked user accounts. A user account is locked after unsuccessful login attempts have exceeded the value set in site settings.
User Editor
This tool allows you to create, edit and delete users. There are two tabs in the work area Designer and Editor. The Designer tab allows you to drag and drop user icons from the Toolbox and then use the Property Window to configure the User Properties. The Editor tab is used by more advanced Administrators and provides a grid interface to manage Users.
User Importer
A wizard that allows the Administrator to import users either from a comma delimited file (*.csv) or from the Active Directory you are connected to.
Settings Group
Workspace
Allows you to specify your Application Settings. The Description Column guides the Administrator in setting global parameters.
Custom Connections
Contains Custom Connections to databases.
Add Custom Settings
Adds a custom setting of a key or value type. Key types are used create a logical group for value settings.
Email Settings Group
Security
Contains all the possible security values required to send email. For OAuth: ClientId, ClientSecret and TenantId, for Smtp authentication UserName and Password.
DeliveryMethod
The PickupDirectory in IIS is the location where applications store email messages for processing by the SMTP server. Use these settings to indicate if IIS is to use a PickupDirectory and the location of the PickupDirectory. By default this is not used.
Settings
Set up basic Smtp configuration like the HostAddress, Port etc.
Subject
Set the encoding to use for the subject of the mail message. By default it is set to us-ascii.
Body
Sets the encoding and if the body of the mail message is HTML. By default encoding is set to use us-ascii and IsHTML is set to true.
Options
Sets other settings like BCC, CC, From, Priority, ReplyTo and To. The From address must be a valid email that is allowed to send messages from the Smtp Server
Authentication Group
SAML
Set the settings relating to integration settings when using SAML2 for authentication.
Custom Settings Group
Reports
Key\value combinations of the name of the report and the location report. These settings are be used to display reports in WorkFlow activities. For more information, click here.
ReportConnections
Sets the data integration connection settings used in Reports.
DashboardConnections
Sets the data integration connection settings used in Dashboards.
Notifications
Settings used by the Notification and Alert service that is deployed as part of WorkFlow Monitor
General Group
About
Click to show WorkFlow version details, client and server version details.
License Manager
Used to apply your license key. This function will also indicate how many of your available users have been used as well as the expiry date of your license.
Documentation
This button directs you to XMPro Documentation site, which includes comprehensive information about XMPro, such as How-to guide, End-To-End Use Case, and numerous knowledge base articles.
Visibility Group
Process Explorer
Tick to display Process Explorer, which shows a tree view of Process Groups, Processes and Activities.
Business Group
Tick to display Business Group tab, which shows a tree view of Business groups and roles.
Toolbox
Contains all the objects or structures required to build your site. It includes Processes, Activity Designer objects (to design your screen or page), Visio Designer, Roles, and Users.
Properties
Displays the properties of whatever object is selected in the Work Area. You can edit the properties in this window.
Document Group
Load Document
Allows you to open an existing Visio drawing.
Save Document As
Allows you to save the current Visio drawing locally.
Page & Print Group
Page Setup
Allows you to setup the page for the current Visio drawing.
Print Preview
Allows you to preview the page for the current Visio drawing.
Allows you to print the page for the current Visio drawing.
Attributes
Standard Time:
The time, in minutes, that this activity is supposed to take to perform.
Behavior
Allow Parameterization:
A Boolean value that instructs the activity to scan the query string for object values when loading for the first time.
This feature is handy when launching WorkFlow from external applications.
It only applies to First Activities.
A typical example will be when calling an activity from a third-party program using a standard link. If this property is set to True for the activity you are calling, you can specify the link to be:
www.xmpro.com/myProcessItem.aspx?g=1&id=1 &objectname=value&objectname=value
It is important to note that you need to call the object names using its exact names.
Auto Load Next:
A Boolean value that specifies whether the next activity of the same process should be loaded automatically from the user's task list in the WorkFlow once the previous one is complete.
Event Create:
This property specifies who can access the activity.
When an activity is called from a previous activity's trigger, the activity is routed to the role or role group specified in the Event Create property of the activity that is being called.
See more information on Event Create.
Hyperlink:
Defines the URL for a custom page that would be loaded instead of the Activity.
Index:
This is a unique number you assign to the activity. This number will determine the sequence of activities in the tree view of the WorkFlow Designer. The activities will be arranged top to bottom, smallest to biggest index number.
Note: Only when Visio is not used. This is also the number that you will use a unique identifier in the activity's name.
Inherit Values:
A Boolean value that specifies whether Inherit Values should be switched on or not.
If Inherit Values is set to True, and an activity gets called more than once in the same process, the activity will remember and display the values entered by the user the previous time the activity occurred in the process.
JavaScript File Name:
This value specifies the JavaScript file name to use for the current activity to hold the custom client-side event handlers. Note that the file must be placed in the “/scripts/custom” subfolder of the site.
Object Groups:
Assign a control to belong to an object group. Objects assigned to an Object Group will be displayed in a grid/table.
Render Style:
This value specifies the rendering style to be used for the activity.
Stylesheet:
This property stores the path to a custom xsl stylesheet that should be used for this activity. This path is relative to the Transform\custom directory on the IIS server.
Note that if this property is omitted, the activity will use the default stylesheet, also called XMPro Fast Forms.
This is an advanced feature, and should not be used if you are not comfortable with the xsl technology. Most of the activity customization should be done through the CSS stylesheets.
Note: If you want to create your own stylesheet, make a copy of the Activity.xslt stylesheet, make your changes, and save it.
Trigger Style:
Specifies the rendering style to be used for trigger buttons or action item buttons in the activity.
Content Definition
Language:
VBNet or CSharp. Scripting, if required, will be in this language.
Managed Activity:
Add this activity’s script in this property. Only used for VBNet and CSharp managed code.
Dynamic Allocation
Allocate To:
Dynamic allocation for a given process definition. The user can, at runtime, decide to which Activity the process should route to.
System:
XMPro Dynamic allocation for a given process definition. (Save or Return)
Escalation
Notification Interval:
This property specifies the frequency between notifications. It is measured in hours.
Notification Number:
This property specifies how many notifications should be sent before the activity gets escalated.
Identification
Description:
This property specifies a short description for the activity.
The value in this property will be displayed on the menus in the WorkFlow.
If the activity has a Creation Type of First Activity, the activity's description will be displayed when the user chooses a menu option in the Process menu.
If the activity has any other Creation Type, the activity's description will be displayed when the user chooses a menu option in the Tasks menu.
If the activity has a Creation Type of First Activity, and the Description starts with "Report: " followed by the description, the activity will be displayed when the user chooses a menu option in the Report menu.
If Description and Dynamic Description is specified for an activity, the Dynamic Description will override the Description.
Dynamic Description:
This property allows you to give the activity a more dynamic description. This includes retrieving values for the description out of a data source.
You can only specify a Dynamic Description for activities that do not have a Creation Type of First Activity.
If you are standing on this property and you press F4 on the keyboard, the script window will open.
If Description and Dynamic Description is specified for an activity, the Dynamic Description will override the Description.
ID:
A numerical value which uniquely identifies this activity. This property is automatically assigned and used internally by XMPro.
Name:
This property specifies the name of this activity. This name should be unique in the site.
A naming convention is used to name activities. In the activity name, you should show three things:
The process the activity forms part of.
A unique number for the activity. (This number is usually the same number assigned to the activity in the Index property.)
A logical description for the activity.
If you have a Leave Requisition process, and the first activity in the process is a leave form the user has to complete, you will typically name the activity LR10Form. The name cannot have spaces, i.e. "LR10Form" is valid, "LR10 Form" is not.
Parent:
This property specifies the ID of the process to which this activity belongs.
Notification
Notification Type:
Use this property to specify which type of notifications should be send. Options are:
Text Message
Notify New:
This property specifies whether a notification should be sent to the user when it is routed to his/her Tasks.
Note: The Notification Service is not needed for this notification as it is sent by the WorkFlow.
Notify Outstanding:
If an activity is triggered with a due date, and the user that has to respond to the activity has not done so by the due date, the Notification Service will send an email to remind the user on the due date.
This property is not applicable to First Activities. Note: The Notification Service is needed for this notification.
Tracking
Allow Tracking:
A Boolean value that specifies whether this activity can be tracked or not.
If this property is set to True, the user starting the process can track the process in the Tracking menu in the WorkFlow. The activity can also be seen in the history of the next activity when the user accesses it using the Tasks menu.
Allow Value Tracking:
A Boolean value that specifies whether this activity's values can be tracked or not.
If this property is set to False and the Allow Tracking property is set to True, the user starting the process can track the process in the Tracking menu in the WorkFlow, but the user cannot click on the activity in the tracking to see the values entered in that activity. The same applies to the history displayed when an outstanding activity is accessed from the Tasks menu.
Display History:
A Boolean value that specifies whether this activity will display the history of the process when the user accesses it from the Tasks menu in the WorkFlow.
User
Choose a role.
This activity will be routed to the role that is specified.
Group
Choose a business group
This activity will be routed to all the roles in the business group as configured. One role in this business group must assign the activity to them self. When this happens, the activity will be taken out of the Task list of the other roles in the group.
Note: When using Group Member Split as the Creation Type, it will create numerous instances of the one activity, and all the roles must complete the activity.
First Activity
Choose a business group.
This activity is the only activity that can start a process. It will appear in the Process menu of the roles in the specified role group.
Note: that it is always a business group that can start a process.
Report To
No creation value is required.
This activity will be routed to the role that is specified in the Report To property of the role that completed the activity that called this activity.
This Creation Type is typically used for approval activities.
Reply To
No creation value is required.
This activity will be routed to the role that completed the activity which happened before the activity that called this activity.
Object Value
Choose an object that stores a value specifying a user.
This activity will be routed to the user specified in the object. It is typically used with a reference label or an employee lookup.
Note: that the object you specify must store a valid user in the format "FirstName LastName".
Role Object Value
Choose an object that stores a value specifying a role.
This activity will be routed to the role specified in the object. Note: that the object you choose must store a valid role's Description.
Same As
Choose an activity upstream in the workflow.
This activity will be routed to the role that completed the specified activity.
Originator
No creation value is required.
This activity will be routed to the role that did the First Activity in the process. (The role that started the process.)
Dynamic Group
Choose an object that stores a value specifying a business group's name.
This activity will be routed to the role group specified in the object.
It is typically used with a reference label or a team select.
Group Member Split
Choose a role group.
This activity will be routed to all the roles in the business group as configured. It will create numerous instances of the one activity, and all the roles must complete the activity.
Note: When using Group as the Creation Type, one role in this role group must assign the activity to him or herself. When this happens, the activity will be taken out of the Tasks of the other roles in the role group.
A Business Group is a logical group of Roles and is used for routing, notification and escalation purposes in XMPro. A role can form part of more than one business group. The business group is always the first thing you need to create in a new site.
Business Group Management can be performed in the WorkFlow Designer or in WorkFlow.
Only users with the appropriate rights will be able to add, edit or delete Business Groups in WorkFlow or in WorkFlow Designer. In WorkFlow Designer, if Business Groups are not showing in the explorer pane, check that the Read and Write boxes are checked for Business Groups in the Options Editor.
If you are not able to access the Business Group under Manage in WorkFlow , in WorkFlow Designer in the Options Editor, check that the user has access to Read and Edit Users.
For more information on how to manage Options, click here.
Identification
Description
Use this property to define a short description for this business group.
Name
Use this property to define the name of this business group.
Identifier
ID
A numerical value which uniquely identifies this business group. This property is automatically assigned, and used internally by XMPro.
Routing
Escalate To
Use this property to define to which role this group’s tasks must be escalated. This value will be used by XMPro to determine escalation for this business group.
The Business Group is always the first thing you need to create for a new site.
Double-click Business Groups. The Business Groups will be listed under this category and all existing Business Groups will be displayed in your work area.
Click Toolbox.
Drag the Business Group icon to the work area.
Click the New Business Group in your work area.
Click the Properties window tab.
Provide the Description, Name, and Escalate To [optional].
On the quick access toolbar, click Save icon or press CTRL+S to save your changes.
Double-click Business Groups. The Business Groups will be listed under this category and all existing Business Groups will be displayed in your work area.
Click the Business Group that you want to edit.
Click the Properties window tab.
Edit the properties of the Business Group as required.
On the quick access toolbar, click Save icon or press CTRL+S to save your changes.
Double-click Business Groups. The Business Groups will be listed under this category and all existing Business Groups will be displayed in your work area.
Click the Business Group that you want to delete within the WorkFlow.
Above the ribbon, click the Delete icon. A message will be displayed, “Are you sure you wish to delete the selected item(s)?”
Click OK.
On the quick access toolbar, click Save icon or press CTRL+S to save your changes.
The XMPro Integration Wizard provides a user-friendly way to integrate WorkFlow Connector Plugins with XMPro Activities. It allows users to create activities based on structures specified by a connector and to map the existing Activity objects to the connectors.
The Wizard is available on three levels in the XMPro WorkFlow Designer:
Activity Level
Trigger Level
Control or Object Level
A User-friendly way to map controls to a data source is by means of Predictive Mapping.
Automatic Control creation, which includes:
Automatic Data type constraints.
Automatic Required constraints.
Create, Read, Update, Delete (CRUD) on Object Groups which updates all line items to the Source Object in one operation.
Browse Page features includes:
Populating the page.
Automatic Browse objects creation.
Configuration of target objects.
Lookups are populated.
Chart Controls are populated.
Define conditions for which an operation should execute.
Define a Where clause consisting of Constants, Table Columns, and Controls.
Detailed information on how to use the Integration Wizard can be found here.
The Activity Configuration Wizard is a tool that will help you to set up the primary properties, for example, the name, the creation type of the activity, the notification, escalation, tracking and triggering as well as the style of the form or the screen. This wizard enables you to configure the properties as discussed for Activities in the Process Groups, Processes, and Activities section.
The General tab shows the basic Activity options.
Activity ID
Auto-generated activity number.
Index
Auto-generated index number.
Standard Time
The time that the activity should take to be completed in hours.
Name
Unique system activity name. This needs to be a global unique name. It is suggested to use the auto-generated initial characters and just edit the last part with the activity name description. Spaces are not allowed in the activity name.
Hyperlink
Defines the URL for a custom page that would be loaded instead of the Activity.
Event Create
Event Create ID
Auto generated ID. Leave the default for the Visio editing environment.
Routing Type
This specifies the various routing options that are used to support workflow patterns. More information: Click here
Reply To
Object Value
Role Object Value
Same As
Originator
Dynamic Group
Group Member Split
Routing Group
This specifies the Business Groups, Roles, or dynamically generated groups that activities of cases are routed.
Activity Description
Dynamic
A dynamic description includes a variable from a previous a step in the process to make the name contextual. An example for a dynamic versus static description could be Leave Application for Keith Miller versus Leave Application. The dynamic description makes it easy to recognize transactions in To Do lists, etc. The controls on the right to the dynamic description shows field variables from previous steps and make the mapping easy.
Static
This name appears on the diagram and is the default if no dynamic name is specified. It is also used in reporting and performance dashboards.
Controls
This allows controls to be drag and dropped onto the Dynamic area to help construct the definition for the activities Dynamic Description.
The Advanced tab shows additional notification and escalation options, including behavior and styling settings.
Notification
Notify New
This property specifies whether a notification should be sent to the user when it is routed to their Tasks.
Note: The Notification Service is not needed for this notification as it is sent by the Action Hub.
Notify Outstanding
If an activity is triggered with a due date, and the user that has to respond to the activity has not done so by the due date, the Notification Service will send an e-mail to remind the user on the due date. This property is not applicable to First Activities.
Type
The email address of this user. This is the email address that will be used by XMPro to send email notifications to. Therefore, it is important that it is a valid email address.
SMS
The text message address of this user. This is the e-mail address that will be used by XMPro to send text message notifications. Therefore, it is important that it is a valid address.
Note: Only applicable for text message servers that receive instructions from mail servers.
Workspace Enabled
This indicates if the activity is available in the main WorkFlow. If it is set to false it will not be visible to any users.
Offline Capable
This indicates if the activity is capable of running in an offline mode.
Mobile Enabled
This indicates if the activity is available in the WorkFlow Mobile. If it is set to false it will not be visible to any users though the WorkFlow Mobile.
ACM Enabled
This indicates if the activity is available in the main WorkFlow, for Case actions. If it is set to false it will not be available.
Escalation
Interval
This property specifies the frequency between notifications. It is measured in hours.
Number
This property specifies how many notifications should be sent before the activity gets escalated.
Tracking
Allow Tracking
A Boolean value that specifies whether this activity can be tracked or not. If this property is set to True, the user starting the process can track the process in the Tracking menu in the WorkFlow. The activity can also be seen in the history of the next activity when the user accesses it using the Tasks menu.
Allow Value Tracking
A Boolean value that specifies whether this activity’s values can be tracked or not. If this property is set to False and the Allow Tracking property is set to True, the user starting the process can track the process in the Tracking menu in the WorkFlow, but the user cannot click on the activity in the tracking to see the values entered in that activity. The same applies to the history displayed when an outstanding activity is accessed from the Tasks menu.
Display History
A Boolean value that specifies whether this activity will display the history of the process when the user accesses it from the Tasks menu in the WorkFlow.
Triggering
Auto Parameterization
A Boolean value that instructs the activity to scan the query string for object values when loading for the first time. This feature is handy when launching XMPro from external applications. It only applies to First Activities. A typical example will be when calling an activity from a third-party program using a standard link. If this property is set to True for the activity you are calling, you can specify the link to be:
[main site url]/processitem.aspx?g=1&id=1&objectname=value&objectname=value
It is important to note that you need to call the object names using its exact names.
Inherit Values
A Boolean value that specifies whether Inherit Values should be switched on or not. If Inherit Values is set to True, and an activity gets called more than once in the same process, the activity will remember and display the values entered by the user the previous time the activity occurred in the process.
Auto Load Next
A Boolean value that specifies whether the next business event of the same process should be loaded automatically from the user’s action list or To Do list (in the end User Interface) once the previous one is completed.
Styling
Render Style
Specifies the rendering style to be used for the activity options are:
ActivityByIdWithMultipleColumns
ActivityByIdWithMultipleColumns
ActivityWithMultipleColumns
DefaultActivityWith2Columns
Dashboard
JavaScript File
Specifies the JavaScript file name to use for the current activity to hold the custom client-side event handlers.
Note: The file must be located in the /scripts/custom subfolder of the site.
Trigger Style
Specifies which render style will be used for triggers. (Dynamic Button, Button, CheckBox, or None.)
Stylesheet
This property stores the path to a custom XSL stylesheet that should be used for this activity. This path is relative to the Transfer custom directory on the IIS server.
Note: If this property is omitted, the activity will use the default stylesheet, also called XMPro Fast Forms. This is an advanced feature, and should not be used if you are not comfortable with the XSL technology. Most of the activity customization should be done through the CSS stylesheets.
Note: If you want to create your own stylesheet, make a copy of the Activity.XSLT stylesheet, make your changes, and save it.
The purpose of the Dashboard Designer wizard is to provide a fully integrated tool to create dashboards in XMPro. The DevExpress Dashboard Designer are used to provide this functionality. Access the Dashboard Designer from the WorkFlow Designer, Design tab, Dashboard Designer.
The purpose of the Report Designer wizard is to provide a fully integrated tool to create reports in XMPro. The DevExpress End-User Report Designer is used to provide this functionality. Access the Report Designer from the WorkFlow Designer, Design tab, Report Designer.
User Management can be performed in the WorkFlow Designer or in WorkFlow.
Only users with the appropriate rights will be able to add, edit or delete Users in WorkFlow or in WorkFlow Designer. In WorkFlow Designer, if the User Editor is greyed out are not showing in the explorer pane, using the Options Editor, check that the user has access to Read and Edit Users.
If you are not able to access the Users under Manage in WorkFlow , in WorkFlow Designer in the Options Editor, check that the user has access to Read and Edit Users.
Click Manage > Roles on the left side menu as shown below.
This will load the Role Management interface as shown below.
Click Manage > Roles as shown above.
Provide the details in the previous figure as required and click the Update button to save the record.
Click Manage > Roles as shown above.
Make your changes as required.
Click the Update button to save the record.
To ensure the integrity and the auditability of the solution, you will not be able to delete any Role that has been used in the system. However, you will be able to delete a Role that has not been used.
Click Manage > Rolesas shown above.
Click OK.
Click on the Business Groups Category.
Double-click the Business Group Category item. This will show all the Roles linked to the Business Group.
Click on the Role. The properties of the role will be shown in the Properties Window.
Click on the Business Groups Category.
Double-click the Business Group Category.
Double-click the Business Group in which you want to create a new Role. This will open the Business Group’s details in the main work area, for example, Sales.
Drag in a new Role from the Toolbox to the work area.
(Not shown) Click on the New Role.
Click Properties tab.
Provide the Description for the new Role. Configure the other properties as required including the Escalate To, Report To and Route To properties as per Role Properties previous explained.
On the quick access toolbar, click Save icon or press CTRL+S to save your changes. The asterisk next to the Business Group tab (in this example Sales) will disappear. An asterisk indicates that the record has not been saved.
Click on Business Groups.
Click on Organogram in your work area in the following figure.
Click on the Business Groups Category.
Double-click on the Business Group with which your Role is associated. This will open the Business Group’s details in the main work area.
Click on the Role you want to edit.
Click Properties tab.
Edit the properties of the Role as required.
On the quick access toolbar, click Save icon or press CTRL+S to save your changes. The asterisk next to the Business Group tab (in this example Sales) will disappear. An asterisk indicates that the record has not been saved.
Click on the Business Groups Category.
Double-click on the Business Group with which your Role is associated. This will open the Business Group’s details in the main work area.
Click on the Role you want to delete.
On the ribbon, click the File tab, click Delete to delete the role. A message will appear to confirm that you want to Delete the Role.
Click OK. A Role can be part of more than one Business Group.
On the quick access toolbar, click Save icon or press CTRL+S to save your changes. The asterisk next to the Business Group tab will disappear. An asterisk indicates that the record has not been saved.
A Business Group is a logical and functional grouping of different roles. A role can form part of more than one Business group. The Business Group is always the first thing you need to create in a new site.
Role Management can be performed in the WorkFlow Designer or in WorkFlow.
Only users with the appropriate rights will be able to add, edit or delete Roles in WorkFlow or in WorkFlow Designer. In WorkFlow Designer, if Business Groups are not showing in the explorer pane, check that the Read and Write boxes are checked for Business Groups in the Options Editor.
If you are not able to access the Roles under Manage in WorkFlow , in WorkFlow Designer use the Options Editor, check that the user has access to Read and Edit Users.
Click Manage > Business Groups on the left side menu as shown below.
This load the Business Group Management interface as shown below.
Click Manage > Business Groups as shown above.
Enter the Name in the Name field.
Enter the Description in the Description field.
Select the Name of the person to escalate this Business Group [Optional].
Click the Update button to save the record.
Click the Cancel button to cancel adding a new Business Group.
Click Mange > Business Groups as shown above.
Edit the information as required.
Click the Update button to save the record.
Click Manage > Business Groups as shown above.
Click OK.
Fields refer to the different fields that you see on the activity screen of the XMPro WorkFlow. They are the lowest level elements of a process. These controls are available from the following Activity Designer.
The following list explains the use of the fields available. Each field type also has several options available to configure the field to function the way you want it to. The available options depend on the field type.
Note: When naming the field using the wizard make sure to exclude the use of the XML reserved words & < > % in the caption.
A field has the following properties:
The browse page field type allows you to display more than one field from a database in a separate browser window. It is used instead of a lookup when you want to return records that are too many or too large for a lookup.
The browse page has the following options:
The date picker field type allows the user to choose a date from a Calendar drop down.
It is displayed as a drop down that displays a calendar if the user clicks on it.
The date picker has the following options:
The Chart field displays as a chart in the WorkFlow. You have a lot of field over the chart type, chart colors, the chart's axis, and other chart elements.
The chart has the following options:
The checkbox control type displays a standard Windows check box on the activity screen.
The checkbox has the following options:
The radio button field type is displayed as a standard Windows radio or option button. It allows the user to choose one of more than one option.
The radio button has the following options:
The dropdown field type allows the user to choose a value from a predefined list.
It is displayed as a combo-box. The values for a drop down are hard-coded in the WorkFlow Designer.
The dropdown has the following options:
The lookup field type allows the user to choose a value from a list.
It is displayed as a combo-box. The values for a lookup are dynamically retrieved from a database.
The lookup has the following options:
The reference label field is displayed as a dynamic value on the activity screen. The user can't change this value.
It is typically used to display the date, the user's name, and other dynamic values that you don't want the user to change.
The reference label has the following options:
The simple text box field is displayed as a standard Windows textbox.
The textbox has the following options:
The large textbox field is displayed as a comments box or multi-line text box on the activity screen.
The large textbox has the following options:
The hyperlink field provides a hyperlink on the activity screen.
It is typically used as links to open reports, or links to related documents such as policy and procedure documents.
The hyperlink has the following options:
The file attachment field allows the user to attach documents to the process. It is displayed as a text box with a Browse button next to it. If the user clicks on Browse, it allows the user to navigate their hard drive.
The hyperlink has the following options:
The team select field allows the user to choose the role group to which a later activity must be routed. It is displayed as a combo box.
For the field to work, you need to make sure that the items in the team select are exactly the same as existing role groups. Then you can use this field as the Creation Value when choosing Dynamic Group as the Creation Type.
The hyperlink has the following options:
The command option field is responsible for calling the next activity. All activities must have at least one command option.
If an activity only has one command option, it is displayed as a checkbox with a Submit and a Reset button. If an activity has more than one command option, they are displayed as radio buttons with a Submit and a Reset button.
The command option does not have any options.
For more information on how to manage Options, click .
Click to create a new role.
Click theicon next to the record you want to edit.
Click the next to the record you want to delete. A Message will be displayed “Are you sure that you want to Delete this Role”.
For more information on how to manage Options, click .
Click the icon.
Click the icon next to the record that you would like to change.
Click the icon next to the record that you would like to delete. The following message will be displayed, “Are you sure you want to Delete this Business Group?”
Attributes
Active
A Boolean value that specifies whether the user is an Admin User or not. This property contributes to the security model of the WorkFlow Designer. If a user is an Admin User, they can open the site in the WorkFlow Designer. If not, they can only use the site in WorkFlow.
Admin User
A Boolean value that specifies whether the user is an Admin User or not. This property contributes to the security model of the WorkFlow Designer. If a user is an Admin User, they can open the site in the WorkFlow Designer. If not, they can only use the site in WorkFlow.
Available
A Boolean value that specifies whether the user is available or not. If a user is not available, the user’s tasks will be routed to the role that is configured in the Route To property of the role to which the user is assigned.
Notify
A Boolean value that specifies whether the user wants to receive notifications on new tasks routed to them.
Role
Use this property to assign a user to a role.
Contact Information
E-Mail Address
The e-mail address of this user. This is the e-mail address that will be used by the XMPro to send e-mail notifications to. Therefore, it is important that it is a valid e-mail address.
Pager
A pager number for this user.
SMS Address
The text message address of this user. This is the e-mail address that will be used by XMPro to send text message notifications. Therefore, it is important that it is a valid address.
Note: Only applicable for text message servers that receive instructions from mail servers.
Tel. No. (Home)
An after-hours contact number for the user.
Tel. No. (Mobile)
A mobile number for the user. This is the mobile number that will be used by XMPro to send text message notifications. Therefore, it is important that it is a valid mobile or cellular phone number.
Tel. No. (Work)
A work number for the user.
Identification
First Name
The name of the user.
Last Name
The surname of the user.
Reset Password
Reset the user’s password using this property.
Username
The name that the user will use to log on to the WorkFlow. For Windows Authentication, you will have to use a Domain Name\Username as the Username. For SAML2 Authentication, the username must match the saml:NameID value returned in the SAML2 payload.[NJ1]
Identifier
ID
A numerical value which uniquely identifies this user. This property is automatically assigned, and used internally by XMPro.
Attributes
Business Groups
Using this property, you can make a role part of more than one business group. When you click in this property, you will see an option button. If you click on this button, you can configure the business groups containing this role.
MetaData
This property allows you to define meta data for this role. Meta data is additional data you want to store for your roles. When you click in this property, you will see an options button. If you click on this button, you can configure meta.
Tracking Rights
Using this property, you can specify which processes this role is allowed to track. By default, a role that starts the process can track the process. The Tracking Rights property allows you to configure additional tracking permissions.
Cost
Resource Cost
Specify, in hours, the cost of this resource. This property is used to determine the total cost of a process.
Identification
Assigned User
This property displays the user who is assigned to this role. You cannot assign users in this property; you can only see which user is assigned. To assign a user to this role, use the role property on the user.
Description
Specify a description for the role in this property.
Identifier
ID
This property displays the ID of the business group to which this role belongs. This property can be different for different instances of the role. This is because the role can belong to several business groups.
Parent ID
A numerical value which uniquely identifies the role. This property is automatically assigned, and used internally by XMPro.
Routing
Escalate To
Specify the role to which this role’s unresolved activities must be escalated.
Report To
This property specifies the role to which this role reports. This is used by the Event Create property of XMPro activities to determine, for example, who needs to approve this role’s request.
Route To
Specify to whom this role’s activities must be routed if the user attached to this role is not available. The availability of the user is specified on the Available property of the user. Typically this will be a user who is on the same level in the organization as the user.
Object Groups
An Object Group displays line items. A number of Objects (or fields) will form a line within the Object Group. The user is allowed to add as many lines as needed to the object group. The line items can be populated from a database, or individual line items can be added as more fields are completed.
Tabs
Allows for the name of the tab to be defined. At the Activity Object level, add an option to associate a tab with an Activity Object. If an Activity Object belongs to an Object Group then all the Activity Objects in the same Object Group needs to be part of the same tab group.
Attributes
Options:
Use this property to configure the options for the field.
The available options depend on the field's type. See Field Options below for details for each control.
Behavior
Column:
This property allows you to specify that a field should be placed next to another field. The result will be two fields on the same line next to one another in the WorkFlow.
The property can have one of the following values:
0 – The field should be in the left column. This is the default value for this property.
1 - The field should be in the right column
Note: This property only applies to ungrouped fields that are not of type command option.
Type:
This property specifies the field's type. For more information for each type see the section below.
Content Definition
Dynamic Value/ Managed Object:
This property allows you to write a script or code for the field to run and interpret. It can be used to populate the value of the field dynamically.
This property is not available for Command Option field types.
Trigger:
This property allows you to write a trigger script for the command option field. The trigger script is the script that calls the next activity, and in doing so, determines the routing or flow of the process.
This property is only available for Command Option field types.
Control
Data Type:
This property specifies the required data type for the value entered into the field on the activity or web form. XMPro allows three data types: numeric, date, and text.
If the user enters an invalid data type into the control, XMPro will inform the user of this, and prevent the process from carrying on until the user enters the correct data type.
Display Mask:
A Boolean value indicating whether the input mask should be displayed in the WorkFlow.
If the value is True, the input mask will be displayed next to the Caption.
Input Mask:
This property allows you to specify the required format of the data entered by the user into this field.
See Specifying Input Masks for more information on this topic.
Required Field:
A Boolean value that specifies whether a value for this field is required in the WorkFlow.
ID
ID:
A numerical value which uniquely identifies this activity field. This property is automatically assigned, and used internally by XMPro.
Identifier
Caption:
This property specifies a caption that will appear to the left of the field in the WorkFlow.
Index:
This is a unique number you assign to the field. This number will determine the sequence of fields on the activity or web form in the WorkFlow. The fields will be arranged top to bottom, smallest to biggest index number.
This is also the number that you will use as a unique identifier in the field's name.
Name:
This property specifies the name of this field. This name should be unique in the site.
A naming convention is used to name fields. In the field name, you should show four things:
The process the field forms part of.
The activity the field forms part of.
A logical description for the field.
If you have a Leave Requisition process, and the first activity in the process is a leave form the user has to complete, and the first field on this activity is a text box where the user must enter his/her name, you will typically name the field LR10Name.
Object Group:
This property allows you to choose the object group that you want this field to be part of. A field doesn't have to be part of an object group.
Object groups are configured in the Object Groups property of an activity.
Parent:
This property specifies the ID of the activity to which this field belongs.
Tooltip Text:
This property specifies the tooltip text for the field. This tooltip text will appear as an icon to the right of the field in the WorkFlow.
Risk Management
Risk Category:
The Risk Management properties are used in compliance processes (Sarbanes-Oxley).
Risk Control Type:
The Risk Management properties are used in compliance processes (Sarbanes-Oxley).
Risk Description:
The Risk Management properties are used in compliance processes (Sarbanes-Oxley).
AllButton
A Boolean value that specifies whether the browse page displays the display all icon.
AutoPostBack
A Boolean value that specifies whether the page must automatically refresh when this field loses focus.
Edit Page
This property allows you to configure the browse page.
When you click in this property, a button ( ) will appear. This button will open the configuration window
FirstPage
A Boolean value that specifies whether the browse page displays the first page icon.
LastPage
A Boolean value that specifies whether the browse page displays the last page icon.
Popup
A Boolean value indicating whether the browse page must open up in a different browser window, or on the same page.
Resizable
A Boolean value that specifies whether the user can resize the browse page window.
Scrollbars
A Boolean value that specifies whether you want to display scrollbars in the browse page window.
Visible
A Boolean value that specifies whether the browse page object is visible or not.
Width
The width, in pixels, of the browse page field.
WindowHeight
The height, in pixels, of the browse page window.
WindowWidth
The width, in pixels, of the browse page window.
AutoPostBack
A Boolean value that specifies whether the page must automatically refresh when this field loses focus.
Enabled
A Boolean value that specifies whether this field is enabled or disabled.
Style
This option allows you to use any CSS instruction/s to determine what the field looks like and how it acts.
For example: "text-align: center;"
Visible
A Boolean value that specifies whether this field is visible or not.
Width
Specify the width, in pixels.
Chart Definition
This option opens the Chart Wizard which will take you through the steps of creating a chart.
Height
Specify the height, in pixels, of the chart.
Visible
A Boolean value indication whether the chart must be visible or not.
Width
Specify the width, in pixels, of the chart.
AutoPostBack
A Boolean value that specifies whether the page must automatically refresh when this field loses focus.
Enabled
A Boolean value that specifies whether this field is enabled or disabled.
Style
This option allows you to use any CSS instruction/s to determine what the field looks like and how it acts.
For example: "text-align: center;"
Visible
A Boolean value that specifies whether this field is visible or not.
AutoPostBack
A Boolean value that specifies whether the page must automatically refresh when this field loses focus.
Enabled
A Boolean value that specifies whether this field is enabled or disabled.
GroupName
The name of the group of radio buttons. In order to obtain the functionality of the radio button, you need to make it part of a group.
Style
This option allows you to use any CSS instruction/s to determine what the field looks like and how it acts.
For example: "text-align: center;"
Text
The text that should appear to the right of the radio button.
Visible
A Boolean value that specifies whether this field is visible or not.
AutoPostBack
A Boolean value that specifies whether the page must automatically refresh when this field loses focus.
Enabled
A Boolean value that specifies whether this field is enabled or disabled.
Items
Use this property to add items to the drop down.
Clicking on the options button ( ) in this property will open the Specify Items window. In this window, you can add, remove, or change the entries in the drop down's list.
Style
This option allows you to use any CSS instruction/s to determine what the object looks like and how it acts.
For example: "text-align: center;"
Visible
A Boolean value that specifies whether this field is visible or not.
Width
Specify the width, in pixels, of this object.
AutoPostBack
A Boolean value that specifies whether the page must automatically refresh when this field loses focus.
Enabled
A Boolean value that specifies whether this field is enabled or disabled.
Style
This option allows you to use any CSS instruction/s to determine what the field looks like and how it acts.
For example: "text-align: center;"
Visible
A Boolean value that specifies whether this field is visible or not.
Width
Specify the width, in pixels, of this object.
Style
This option allows you to use any CSS instruction/s to determine what the object looks like and how it acts.
For example: "text-align: center;"
Visible
A Boolean value that specifies whether this field is visible or not.
Width
Specify the width, in pixels, of this field. This is used when you want to align the text in the label using the Style option.
AutoPostBack
A Boolean value that specifies whether the page must automatically refresh when this field loses focus.
MaxLength
Specify the maximum number of characters that the user can input in this field.
ReadOnly
A Boolean value that specifies whether the field is read-only.
Style
This option allows you to use any CSS instruction/s to determine what the field looks like and how it acts.
For example: "text-align: center;"
Visible
A Boolean value that specifies whether this field is visible or not.
Width
Specify the width, in pixels, of this field.
AutoPostBack
A Boolean value that specifies whether the page must automatically refresh when this field loses focus.
Height
Specify the height, in pixels, of this field.
ReadOnly
A Boolean value that specifies whether the field is read-only.
Style
This option allows you to use any CSS instruction/s to determine what the field looks like and how it acts.
For example: "text-align: center;"
Visible
A Boolean value that specifies whether this field is visible or not.
Width
Specify the width, in pixels, of this field.
Enabled
A Boolean value that specifies whether this field is enabled or disabled.
ImageUrl
The image to use as the link.
If ImageURL and NavigateURL are set, ImageURL will override NavigateURL
NavigateUrl
The URL that the link must open.
If ImageURL and NavigateURL are set, ImageURL will override NavigateURL.
Style
This option allows you to use any CSS instruction/s to determine what the field looks like and how it acts.
For example: "text-align: center;"
Target
The target window in which the link must open.
Options are:
blank - opens the link in the new browser window. This is the default value for this property.
_parent- opens the link in the same browser window.
Text
The text to use as the link.
Visible
A Boolean value that specifies whether this field is visible or not.
Location
The location of where the file will be stored.
Style
This option allows you to use any CSS instruction/s to determine what the field looks like and how it acts.
For example: "text-align: center;"
Upload File To
Type of file field you want to upload. SharePoint or XMPro
Text
The text to use as the link.
Visible
A Boolean value that specifies whether this field is visible or not.
AutoPostBack
A Boolean value that specifies whether the page must automatically refresh when this field loses focus
Enabled
A Boolean value that specifies whether this field is enabled or disabled.
Items
Clicking on the options button ( ) in this property will open the Specify Items window. In this window, you can add, remove, or change the entries in the team select's list.
Style
This option allows you to use any CSS instruction/s to determine what the field looks like and how it acts.
For example: "text-align: center;"
Visible
A Boolean value that specifies whether this field is visible or not.
Width
Specify the width, in pixels, of this field.
Meta Data tage are additional value you want to store for each role. A meta data tag is a key/value pair that is defined for the site. Values are assigned for each tag for each user/role. You can add a default value, which will apply to all users. You can also indicate if the value should be encrypted. Meta Data values are used in designing workflow processes.
Meta Data Management can be performed in the WorkFlow Designer or in WorkFlow.
Only users with the appropriate rights will be able to add, edit or delete Meta Data tags in WorkFlow. In WorkFlow Designer, using the Options Editor, check that the user has access to Read and Edit Users.
Only users with the appropriate rights will be able to add, edit or delete Meta Data tags in WorkFlow Designer. In WorkFlow Designer, using that the user has access to Business Groups in order access the Meta Fields Editor.
For more information on how to manage Options, click here.
Browse Page
Displays more than one field from a database in a separate browser window.
Chart
Displays as a chart in the WorkFlow. Charts can be changed based on a chart type, chart colors, the chart’s axis, and other chart elements.
Check Box
Displays a standard Windows check box on the activity screen. Used to select (checked) or clear (unchecked) an option.
Command Option
Displays a command button responsible for calling the next activity. All activities should have at least one command option.
Date Picker
Displays a standard Windows calendar on the activity screen. Select a date from the Calendar drop-down.
Drop-Down
Displays as a combo-box with a predefined list of selectable values. The values for a drop-down are static in the WorkFlow Designer and are a good control to use to display “stagnant” information that is not sensitive. If the options are going to change frequently or if you are, working with sensitive information, this is not a good control to use.
File Attachment
Displays as a text box with a Browse button next to it. Allows to attach documents to the process. When the Browse button is selected, it allows the navigation of a hard drive.
HTML Editor
Displays as an HTML Editor control. Allows for text to be copied and pasted as well as manipulated within the control.
Hyperlink
Displays an HTML link to an address, which opens in the default browser. Allows a hyperlink on the activity screen. It is typically used as links to open reports, or links to related documents such as policy and procedure documents.
Large Text Box
Displays as a comments box or multi-line text box on the activity screen. It serves as a placeholder to fill out and provide information.
Lookup
Displays as a combo-box. Allows the choice of a value from a list. The values for a lookup are dynamically retrieved from a database.
Pivot Grid
Displays as a Pivot Grid control. Allows present complex data sets and to allows to be grouped, ordered and filtered data presented.
Radio Button
Displays as a standard Windows radio or option button. It allows the choice one of more than one option.
Reference Label
Displays as a dynamic value on the activity screen. This value cannot be changed.
Signature
Displays as a standard signature box. Allows for the capture of the end user’s signature.
Simple Text Box
Displays as a standard Windows text box. It serves as a placeholder to fill out and provide information.
Team Select
Displays as a combo-box. Allows the selection of the business group to which a later activity must be routed. For the object to work, the items in the team select must be the same as existing business groups. Then, this field can be used as the Creation Value when choosing Dynamic Group as the Creation Type.
Chart display in WorkFlow
In the Business Groups tab double click on a Business Group. This will show the Roles linked to the Business Group.
Click on any Role. In the Properties pane for the Role click on the ellipses (...) button in MetaData field. This will open the Meta Data Editor that is used to edit the values for the Role. Click on the Meta Fields Editor button. This will open a new window where you can manage Meta Data fields as shown below.
In the Meta Data Field Editor click on the Add button. This will add a new entry in the left pane.
Select the newly added entry. This will show the properties in the right pane as shown below.
Capture values for Name, Description. If needed specify a Default Value if needed and indicates if the values should be encrypted.
Click on OK to save the new field.
In the Meta Data Field Editor click on the field that you want to edit. This will show the properties in the right pane as shown below.
Edit values for Name, Description. If needed specify a Default Value if needed and indicates if the values should be encrypted.
Click on OK to save the the changes.
In the Meta Data Field Editor click on the field that you want to delete.
Click on Remove.
Click on OK to save the the changes.
Click Manage > User on the left side menu as shown below.
This will load the User Management form as shown below.
License Information
Displays when the current license will expire, the number of users registered on the system and the total number of users for your license.
Click Manage > Users as shown above.
Provide the details as required.
Select the Active and Available checkboxes if needed. Other fields are optional.
Click the update button to save the record.
Click Manage > Users as shown above.
Edit the information as required.
Click the update button to save the record or click the cancel button to cancel any changes that you made and return you to the user list. The changes made on the screen will not be saved.
IMPORTANT: If the user has transacted in WorkFlow you shouldn't delete their user record. You have to mark the record “Inactive”. Uncheck the Active box.
Click Manage > Users as shown above.
Click the update button to save the record or click the cancel button to cancel any changes that you made and return you to the user list. The changes made on the screen will not be saved.
To assigned or remove users from Business Groups:
Click Manage > Users as shown above.
Click on the Business Groups tab. This will display all the Business Groups that the user is assigned to.
To manage meta data settings for the user:
Click Manage > Users as shown above.
Click on the Meta Data tab. It will display all the Meta Data tags available in XMPro. For more details on how to manage meta data tags, click here.
Edit the MetaData Value in the text box provided.
Click on Update to apply the changes or Cancel to exit out of the edit function.
Users can at any time change their password in WorkFlow.
Click the user drop-down – as indicated in the figure above.
Select Change Password. The Change Password window displays.
Provide the Current Password and New Password as per the guidelines provided.
Click Submit.
Site Settings Management can be performed in the WorkFlow Designer or in WorkFlow. There are 2 types of settings.
Application: settings used by XMPro.
Custom Settings: settings that are specific to the implementations. The following settings are included by default:
Only users with the appropriate rights will be able to add, edit or delete site settings in WorkFlow Designer. In WorkFlow Designer, if the Administration tab is greyed out, use the Options Editor to check that the user has access to Read and Edit Settings.
Only users with the appropriate rights will be able to edit site settings in WorkFlow. If you are not able to access the Site Settings under Manage in WorkFlow, in WorkFlow Designer in the Options Editor, check that the user has access to Read and Edit Settings.
For more information on how to manage Options, click here.
Click on the Administration tab in WorkFlow Designer. The settings sections are:
Settings
Custom Settings
Email Settings
Authentication
Click on the node item that you want to edit. This will display the settings in the main panel in the designer.
Click on the Administration tab in WorkFlow Designer.
In the Settings section, click on the Add Custom Setting node. This will open the custom setting keys for the site as show below:
Click on the Setting button at the bottom as show above.
This will add a new row in the table. Capture the Name value, set the Value to N/A and the Type to Key. Click outside of the row to update the table.
On the quick access toolbar, click Save icon or press CTRL+S to save your changes. The asterisk next to the tab customSettings will disappear. An asterisk indicates that the record has not been saved.
The new settings will appear in the Settings section.
Click on the Administration tab in WorkFlow Designer.
Click on the custom setting that you want to add a new value, which will open the editor in the main pane as shown in below.
Click on the Setting button at the bottom as show above.
This will add a new row in the table. Capture the Name value, set the Value to the value for the setting and the Type to Value. Click outside of the row to update the table.
On the quick access toolbar, click Save icon or press CTRL+S to save your changes. The asterisk next to the tab tab will disappear. An asterisk indicates that the record has not been saved.
Click on the Administrator tab in WorkFlow Designer.
Click on the custom setting for which you want to edit a value. This will open the editor in the main pane as shown in below.
Click the row that you want to edit. Make the required changes click outside of the row to update the table.
On the quick access toolbar, click Save icon or press CTRL+S to save your changes. The asterisk next to the tab tab will disappear. An asterisk indicates that the record has not been saved.
Click on the Administrator tab in WorkFlow Designer.
Click on the custom setting for which you want to delete a value. This will open the editor in the main pane as shown in above.
Select the row that you want to delete as shown below. On the keyboard hit the Delete button. You should then see a confirmation dialog.
On the quick access toolbar, click Save icon or press CTRL+S to save your changes. The asterisk next to the tab tab will disappear. An asterisk indicates that the record has not been saved.
Click Manage > Site Settings as shown above below.
This will load the Site Settings as shown below.
Click Manage > Site Settings as shown above above.
Click on the tree view node in the left pane. This will display the settings for this node in the center pane.
Settings are automatically filtered when keywords are entered into the text fields below each column heading, for example, Name, Value, and Description. Type a keyword in the Name text field to provide quick access to the settings.
Update the value as required
Click Update to save the settings. Note: The updated setting has not yet been applied to the site.
To to apply the updated settings click on Save Changes. This will apply the changes to the site and will be active.
A Process is a grouping of related activities or events that follow a defined workflow based .
Description
Use this property to specify a short description for the process.
ID
A numerical value which uniquely identifies this process. This property is automatically assigned, and used internally by XMPro.
Name
This property specifies the name of the process. This name uniquely identifies the process.
Visible
This property will determine if new processes can be started from the New option in WorkFlow.
In the Server Explorer, click on the Process Explorer Category.
Double-click on the Process Group in which you want to create the new Process. This will open the process group's document window in the main work area.
In the Toolbox, make sure you are in the Processes category.
Drag a Process from the toolbox to the main work area.
In the main work area, select your new process.
In the Properties window, configure the properties for your new process.
Click on Save icon from quick access toolbar; or press Ctrl + S on your keyboard to save the process.
In the Server Explorer, click on the Process Explorer category.
Double-click on the Process Group containing the Process you want to delete. This will open the process group's document window in the main work area.
In the process group's document window, select the process you want to delete.
Click on Delete icon from the quick access tollbar; or press Ctrl + D on your keyboard to delete the process.
When prompted, click on OK.
Click on Save icon from the quick access toolbar; or press Ctrl + S on your keyboard to save the process.
In the Server Explorer, click on the Process Explorer category.
Double-click on the Process Group containing the Process you want to edit. This will open the process group's document window in the main work area.
In the process group's document window, select the process you want to edit.
Make the desired changes in the Properties window.
Click on Save icon from the quick access toolbar; or press Ctrl + S on your keyboard to save the process.
This section will demonstrate how to import an existing process Visio diagram (previously done in Visio) into the WorkFlow Designer.
Open WorkFlow Designer and click Process Explorer.
Navigate to the relevant Process.
Double-click the process in the Server Explorer window to open the Visio window in the Work Area.
Click Import Document.
Select the Visio document you would like to upload.
Click Open. The Shape Selection window will open (previous figure) which will give you the ability to select which Visio objects will be selected for XMPro activities. You can think of an activity as a screen or a form. All Visio objects will have the option Create a Visio Shape only set by default.
The next step will be to evaluate each of the shapes listed (previous figure) to determine whether this Visio Shape will result in an activity or task or screen in XMPro.
Select all the shapes with x in the name column.
Select each shape with the xx value in the name column and select the Create a Visio Shape and link to a new Activity option. The name value that you will link to an XMPro activity might differ – it will depend on your Visio diagram. The important thing to remember is to work through the list, one-by-one, and only mark those that you want to create an activity for in XMPro. Once you have worked through all the shapes, click Import. You have completed the import of your Visio diagram.
On the quick access toolbar, click Save icon or press CTRL+S to save your process.
This section will demonstrate how to export a Visio diagram and save it to a folder. It can be used as a backup or for documentation purposes. Remember that if changes are made to the Visio diagram in the WorkFlow Designer this exported file will not automatically be updated.
Open WorkFlow Designer and click Process Explorer. Navigate to the relevant Process to the Visio diagram you want to save or export. For example, the Leave Application Process as is shown in the figure above.
Double-click the process in the Server Explorer window to open the Visio window in the Work Area.
On the ribbon, click the Visio tab then click Save As.
Browse to the folder where you would like to save the Visio file as shown in the following figure.
Type the file name.
Click Save to save your changes. Your Visio file will now be available in the relevant folder.
Click Manage > Meta Data as shown above below.
This will open the Meta Data Management form as shown below.
Click Manage > Meta Data.
Capture values for Name, Description. If needed specify a Default Value if needed and indicates if the values should be encrypted.
Click the Update button to save the record or click the Cancel button to cancel any changes that you made and return to the previous window.
Click Manage > Meta Data.
Edit the values as needed. Important to note, if you change the Name value AND if the setting is read in task configuration, then the configuration settings will need updating as well.
Click the Update button to save the record or click the Cancel button to cancel any changes that you made and return to the previous window.
Click Manage > Meta Data.
The WorkFlow Designer has an option to enable the use of Visio to design processes. The images below shows the Microsoft Visio design interface. The concepts on how to add, edit or delete activities are the same in the non-Visio environment.
In the Server Explorer, click on the Process Explorer category.
Double-click on the Process in which you want to create the new Activity. This will open the process' document window in the main work area.
In the Toolbox, make sure you are in the Visio Designer category.
Drag a Task from the toolbox to the main work area.
Once the new activity is in the main work area, the Activity Configuration Wizard automatically opens.
In the Activity Configuration Wizard configure the properties for your new activity in the General Tab and click OK.
Click on the Save icon from the quick access toolbar; or press Ctrl + S on your keyboard to save the activity.
Alternatively, In the Properties window, configure the properties for your new activity.
In the Properties window, click in the Event Create property of the activity.
Specify the creation rules and click on OK.
Click on the Save icon from the quick access toolbar; or press Ctrl + S on your keyboard to save the activity.
You can delete an activity by following exactly the same steps that you do when deleting anything else.
In the Server Explorer, click on the Process Explorer category.
Double-click on the Process containing the Activity you want to delete. This will open the process' document window in the main work area.
In the process' document window, select the activity you want to delete.
Click on the Delete icon from the quick access toolbar; or press Ctrl + D on your keyboard to delete the activity.
When prompted, click on OK.
Click on the Save icon from the quick access toolbar; or press Ctrl + S on your keyboard to save the activity.
At any stage you want to, you can change the details of an activity. Follow the same steps you followed when you edited anything else.
In the Server Explorer, click on the Process Explorer category.
Double-click on the Process to which the Activity you want to edit belongs. This will open the process' document window in the main work area.
In the process' document window, select the activity you want to edit.
Make the desired changes in the Properties window.
Click on the Save icon from the quick access toolbar; or press Ctrl + S on your keyboard to save the activity.
In the Server Explorer, click on the Process Explorer category.
Double-click on the Activity in which you want to add the new field. This will open the activity's document window in the main work area. You will notice four reference labels have already been created for you. Current Date, Current User, Case ID and Process ID are default fields created on all new activities.
In the Toolbox, make sure you are in the Activity Designer category.
Drag a Control from the toolbox to the main work area.
Once the new control has been dropped on to the page the Object Configuration Wizard will open.
In the Object Configuration Wizard – General Tab, configure the properties for your new object.
In the Object Configuration Wizard – Options Tab, configure the options for your new object. Each item should be separated by the next with a semi-colon “;”. Once complete click Ok.
Click Save icon on the quick access toolbar; or press Ctrl + S on your keyboard to save the control.
You can delete a control by following exactly the same steps that you do when deleting anything else.
In the Server Explorer, click on the Process Explorer category.
Double-click on the Activity to which the Field you want to delete belongs. This will open the activity's document window in the main work area.
In the activity's document window, select the field you want to delete.
Click on Delete icon from the quick access toolbar; or press Ctrl + D on your keyboard to delete the activity.
When prompted, click on OK.
Click on the Save icon on the quick access toolbar; or press Ctrl + S on your keyboard to save the activity.
At any stage you want to, you can change the details of a field. Follow the same steps you followed when you edited anything else.
In the Server Explorer, click on the Process Explorer category.
Double-click on the Activity to which the Field you want to edit belongs. This will open the activity's document window in the main work area.
In the activity's document window, right click on the field you want to edit and select the option “XMPro Wizard”.
Make the desired changes in the Object Configuration Wizard.
Click on the Save icon on the quick access toolbar; or press Ctrl + S on your keyboard to save the activity.
The purpose of a Fast Field is to reduce the amount of scripting that might be required in configuring a solution.
Click Processes
Click the relevant Process Group. This will open up all the existing Processes associated to this Process Group in the Work Area.
Double-click the control.
Click Designer
Click Toolbox.
Ensure that the Click to enable Script IDE check box is not selected.
Drag the Reference Label in your Toolbox into the Work Area.
On the quick access toolbar, click Save icon or press CTRL+S to save your changes.
Double-click the new Reference Label in the Work Area.
The Fast Field Wizard will be displayed as shown in the following figures.
This procedure describes how to configure a Previous Activity for a Reference Label.
Select the Previous Activity value radio button.
Select the Behaviour OnLoad or OnRefresh check box.
Select the Expand All check box.
Select a Reference Label from the Process Details.
Type a value in the Display a previous object’s value text field.
Click Save.
On the quick access toolbar, click Save icon or press CTRL+S to save your changes.
This procedure describes how to configure a Current User for a Reference Label.
Select the Current User value radio button.
Select the Behaviour OnLoad or OnRefresh check box.
Select a radio button to Display the current user’s (Full Name, User Name, Email, Metadata, Role Description, or Role ID).
Click Save.
On the quick access toolbar, click Save icon or press CTRL+S to save your changes.
This procedure describes how to configure a Report Link for a Reference Label.
Select the Report Link value radio button.
Select the Behaviour OnLoad or OnRefresh check box.
Type a Report Name, Width, and Height.
Select the Connection.
Click Save.
On the quick access toolbar, click Save icon or press CTRL+S to save your changes.
This procedure describes how to configure an Inline HTML code for a Reference Label.
Select the Inline HTML value radio button.
Select the Behaviour OnLoad or OnRefresh check box.
Type an HTML Code in the HTML Code text box.
Click Save.
On the quick access toolbar, click Save icon or press CTRL+S to save your changes.
This procedure describes how to configure a Date Time for a Reference Label.
Select the Date Time value radio button.
Select the Behaviour OnLoad or OnRefresh check box.
Select either Display Current Date or Display Current Date with below mask.
If you selected Display Current Date with below mask, use the Format specifier as shown in the previous figure.
Click Save.
On the quick access toolbar, click Save icon or press CTRL+S to save your changes.
This procedure describes how to configure a Custom Setting for a Reference Label.
Select the Custom Setting value radio button.
Select the Behaviour OnLoad or OnRefresh check box.
Select a Custom Settings.
Click Save.
On the quick access toolbar, click Save icon or press CTRL+S to save your changes.
Drag the Chart Control in your Toolbox into the Work Area.
On the ribbon, click the File tab then click Save or press CTRL+S to save your changes.
Double-click the new Chart Control in the Work Area.
Click the relevant Behavior check box – OnLoad or OnRefresh.
Select the relevant database. In this example, XMDB was selected.
Click the relevant XMConnect statement to execute. The statement will be displayed.
Click Save.
Drag the Lookup Control in your Toolbox into the Work Area.
On the ribbon, click the File tab then click Save or press CTRL+S to save your changes.
Double-click the new Lookup Control in the Work Area.
Click the relevant Behavior check box – OnLoad or OnRefresh.
Select the relevant database. In this example, XMDB was selected.
Select the Statement to execute from the XMConnect window. The statement will be displayed.
Click Save.
Drag the Command Option in your Toolbox into the Work Area.
On the ribbon, click the File tab then click Save or press CTRL+S to save your changes.
Double-click the new Command Option control in the Work Area.
Select the Wait for last check box, if required.
Select the Name, DueDate, ActivationDate, and Role drop-down options to provide values for as indicated in the previous figure.
Click Save.
Dropdown list item displayed:
Lookup items displayed:
Click the icon.
Click the icon next to the user you need to edit.
Click the icon nect to the user you need to edit.
Click on the icon to link the user to a Business Group
Click on the icon to unlink the user from a Business Group
Click the icon nect to the user you need to edit.
Click on the icon next to the meta data tag for which you want to change.
Connections
These are connections specific to the implementation, for example external databases that are used in the workflow tasks.
Reports
Sets the report names and path to those reports used in the application.
Note: The node will be empty in new installations. Use the WorkFlow Designer to add new settings.
For more information on how to configure reports, click .
Report Connections
Set the connections used exclusively for configured reports.
Note: The node will be empty in new installations. Use the WorkFlow Designer to add new settings.
For more information on how to configure reports, click .
Dashboard Connections
Sets the dashboard names and folder path for dashboards used in the application.
Note: The node will be empty in new installations. Use the WorkFlow Designer to add new settings.
For more information on how to configure dashboards, click .
Alert
Used to configure settings needed to send emails in XMPro. New Task notifications that are sent from XMPro uses these settings.
OAuth
Used to configure the Authorization settings when the site uses SAML2 authentication.
Notifications
Used by the Notification and Escalation service when installed and configured. This service is included in the WorkFlow Monitor.
Click next to the setting to edit.
Click the icon to create new Meta Data.
Click the icon to edit or update existing Meta Data.
Click the icon to delete existing Meta Data. A message will be show to "Are you sure you want to Delete this Metadata?". Click OK to delete the record.
Click on the options button () in this property to open the Specify Creation Rules window.
The Activity Configuration Wizard is a tool that will help you to set up the primary properties, for example, the name, the creation type of the activity, the notification, escalation, tracking and triggering as well as the style of the form or the screen. This wizard enables you to configure the properties as discussed for Activities in the Process Groups, Processes, and Activities section.
Once you have dragged-and-dropped, your an activity onto the canvas in your Work Area, the Activity Configuration Wizard will open automatically with the General tab opened. Alternatively, right-click your the Activity.
Click XMPro Wizard. The Activity Configuration Wizard will open. Provide the Name of the Activity. This Name uniquely identifies the Activity.
If you want to load a custom web page instead of this Activity, provide the URL in the Hyperlink field.
The Routing Type determines who can access the Activity.
The Routing Group specifies the details for the Creation Type of this Activity.
The Dynamic field allows you to provide a more dynamic description including obtaining values from a data source.
Static is a short description for this Activity.
Current Data and Current User controls are by default available on all Activities.
Click Show All or deselect if you do not want to show these objects.
Click Advanced tab.
Specify the type of Activity Notification (Notify New or Notify Outstanding) and by Email or SMS.
Specify the Escalation Interval, for example, three hours and the Number of Notifications prior to Escalation.
Triggering options include Allow Parameterization, Inherit Values, and Auto Load Next options.
Styling determines the screen layout, for example, the number of columns on the screen or form, the type of Render Style, Trigger Style, Javascript File and or Stylesheet, if applicable.
Click OK.
On quick access toolbar, click the Save icon or press CTRL+S to save your activity.
The next step will be to place Objects (Fields) on your Activity (form or screen).
The XMPro Integration Wizard provides a user-friendly way to integrate WorkFlow Connector Plugins with XMPro Activities. It allows users to create activities based on structures specified by a connector and to map the existing Activity objects to the connectors.
Right-click the relevant Activity or Trigger or Control.
Click XMPro Integration.
The XMPro Integration Wizard, Connector Tab will be displayed as shown in the following figure. The Connector page lists all the plugins, registered in XMConnect Administration, to which the user has access rights.
Select a plugin from the Configure Connector drop-down menu.
Once the plugin is selected, its initialization parameters appear, as defined in the Plugin.
Provide the expected parameters.
Click Next. The Wizard will attempt to, in the background, retrieve a list of Objects supplied by the Plugin.
Select an Object from the list. A Preview function is available, if supported by the Plugin. The Preview window shows the first 200 records of the selected object.
Click Next.
The Operations tab allows the user to select the operation to be performed on the selected Object. The Insert, Delete, and Update functions are the same regardless of the level the Integration is called. However, the Read operation’s outcome depends on following:
Look Up – If Integration is performed on a Lookup control and the control is mapped to at least one Column then the Lookup is filled with the retrieved Dataset.
Browse Page – If Integration is performed on a Browse Page control, the outcome of the operation is used to populate the Browse Page.
In all other cases, the Read Operation just fills the mappings, which will be demonstrated later in this document.
Select the operation to be performed.
Click Next.
The Output Properties tab lists all the Properties of the selected Object. Only input properties appear for Non-Returning Operations.
Select the properties to include in mappings or click Select All check box.
Click Next.
The Output Mappings tab allows the selected properties to be mapped to Activity Controls, Objects, or <New> which means the Control or Object will be created for the property.
Users can add new mappings here or delete any of the existing ones. However, duplicate columns are not allowed in input mappings while duplicate controls are not allowed in output mappings. The user can add new mappings even if the Control is Identity of delete a Not Null mapping, but such scenarios must be avoided by reconsidering the business logic.
Select the Mapped Control from the drop-down list for the object or leave as <<New>> to generate a new control.
Click Next.
If the operation is to be performed on multiple Records, then an Object Group can be selected from the List. If a Control is specified in the mappings, which belongs to an Object Group then the selected operation is performed for every line in the Object Group. Non-Returning operations run for all the rows while Returning operation fills the Object Group with all the records retrieved from Database.
Controls mappings can be mixed between Object Group controls and Non-Object Group controls, operations still run for all the line items, but the Non-Object Group controls become constants for each line item.
The Object Group column can be checked. The <<New>> Control will be created in the selected Object Group.
Select the Mapped Control from the drop-down list for the object or leave as <<New>> to generate a new control.
Select the relevant Object Group from the drop-down list.
If required, select the Object Group check box to add all new controls into the selected group or individually select each control by selecting the Object Group check box.
Click Next.
Conditional Mappings allow user to define the Where clause for the Operation, if the selected operation is Conditional. The User can define conditions on both the Columns and Control Values. Names starting with @ represent activity controls.
Select the icon to add a new condition for the selected operation.
Click the left-hand side of the condition to select the appropriate object or activity control, for example, [ID].
Click the conditional to select the respective condition for example, [@Current User].
Click the right-hand side of the condition to enter a static value alternatively or click the pencil to turn it into a drop-down to select the appropriate object or activity control, for example, [@Current User]. Repeat Steps 1-4 to add additional conditions.
Click Next.
Execution Conditions have been added to improve integration.
Integration to non-XMPro databases to create, read, update, or delete information can be performed during the on-load of an activity (or a screen) or when a screen is refreshed. This function is provided in the XMPro Integration Wizard.
There are many options available to users requiring different information and different interactions with processes. For this reason, it is possible to have a specific landing page for the various users of XMPro.
A landing page option allows each user to specify their own landing page versus a site-wide setting.
The following XMPro controlled Landing Page options cannot be removed from the system and no access rights can be set.
Home
Processlist
Tasklist
This procedure describes how to the end user can select their default landing page.
Click User avatar to navigate to User Account Information page.
Click the Landing Page drop-down and select the relevant option.
This procedure describes how edit landing page options in WorkFlow.
Prerequisites
User logged belongs to XMPro Administration Business Group. Usually the Site Admin user.
Click New.
Click Edit Landing Page Options under XMPro Processes section.
In the Edit Landing Page Options, click the Name text field and edit, if required.
(Optional) Select a Business Group from the Business Group drop-down to provide access to the Landing Page, for example, Operations Business Group or leave blank to allow everyone access.
Click the Url text field and edit. The Url is the path on the server to the page for the landing page.
Click Save.
Business Rules
When the Current Business Group field is blank or empty, all users will have access to the specified Landing Page.
If you select the Remove check box, the Landing Page option will be removed from all users.
If there are any user’s that are assigned the option, they will be redirected to the site default until it has be reset by the end user.
If you are removed from a Business Group, you will be redirected to the site default versus the configured value until the end user has reset their option.
If you specified a Landing Page option and you specified it with a particular business group and you want to remove access from that business group, and you want to give everyone access, select the Remove Access check box. Click Save.
Open the MD5-SHA.MigrationTool.exe.config
. Update the ConnectionString key for the XMPro Database.
Update the encryption used on the license. The updated license will be placed in the directory of the exe.
Update the encryption used for signature controls.
Update the encryption used for user metavalues (if enabled).
Update encryption used on site.config
file.
Run the XMWorkFlowWeb.exe. This will install a new site, with an option to use an existing XMPro database, or a new one.
Run XMWorkFlowDesigner.exe to install. This will not remove the existing WorkFlow Designer. You will need to remove it through the Add or Remove Programs feature in Windows. You can only use this version for WorkFlow 7.0.
The requirements are based on a standard implementation for a medium to large organization. As with all software application implementation, there are a number of variables that will influence the hardware requirements specifically, including: Number of transactions or activities per minute (volume of traffic); Logging of activities required; Volume of data stored; Data replication required, etc.
CPU Cores
RAM GB
Storage GB
Small
Azure
2
3,5
50
Amazon
2
8
50
Medium
Azure
4
7
50
Amazon
4
16
50
Large
Azure
8
14
100
Amazon
8
32
100
Small
Up to 100 users
Medium
Up to 500 users
Large
Up to 1000 users
Small
Up to 100 users
Medium
Up to 250 users
Large
Up to 500 users
One of the following operating systems is required:
Windows 10 or 11
One of the following Internet browsers is required:
Microsoft Edge
Mozilla Firefox 60.0.7 +
Safari 12.1.2 +
Google Chrome
CPU and Processor
1 GHz or higher
Memory
2024 MB of RAM
Hard Disk
0.5 GB of available hard disk space
One of the following operating systems:
Windows 10 or 11
The following software components are optional in addition to the requirements listed above:
Microsoft Office Visio 2019 (x64)
Other requirements:
Microsoft .NET Framework Version 4.8.0
CPU and Processor
1 GHz or higher
Memory
2024 MB of RAM
Hard Disk
0.5 GB of available hard disk space for a complete installation including all prerequisite software
One of the following operating systems is required:
Windows Server 2016 or greater
Other requirements:
Microsoft Internet Information Services (IIS) 10.0 +
Microsoft .NET Framework Version 4.8.0
CPU and Processor
1.4 GHz or higher (2 CPU)
Memory
4 GB of RAM (Minimum), 8 + GB RAM (Recommended)
Hard Disk
2 GB of available hard disk space for a complete installation including all prerequisite software
One of the following operating systems is required:
Windows Server 2016 or greater
One of the following database applications is required:
SQL Server 2017
SQL Server 2016 SP1+
CPU and Processor
1.4 GHz or higher (2 CPU)
Memory
4 GB of RAM (Minimum), 8 + GB of RAM (Recommended)
Hard Disk
20 GB of available hard disk space
Request Installers by clicking on the component needed.
This is an Administration function enables you to register Connector plugins for your site. This function is disabled by default.
On the ribbon, click the File.
Click Options. The Options Editor will open.
Click Administration.
Click the relevant administrators, for example, Site Administrator.
Click the Other.
Select the XMConnect Allowed Access check box.
Click OK.
Click Close.
If the color of the Connectors Administration on your Wizard tab is gray / black it means that you do not have access to this function.
Refer to Enable Connectors Administration Access.
On the ribbon, click the Design tab, click the Integration group, and click Connectors Administration. The Connectors Manager will open. From this window, you can Add, Update or Delete a Connector.
Click in an empty Display Name field to add and type the connector name, assembly name and select an icon.
Click Save.
The purpose of the Dashboard Designer wizard is to provide a fully integrated tool to create dashboards in XMPro. The DevExpress Dashboard Designer are used to provide this functionality. Access the Dashboard Designer from the WorkFlow Designer, Design tab, Dashboard Designer.
This procedure describes how to open the XMPro Dashboard Designer using the WorkFlow Designer.
If the Dashboard Designer is grayed out, contact your Site Administrator.
On the ribbon, click the Design tab, click Dashboard Designer from the Reporting Group in WorkFlow Designer. The XMPro Dashboard Designer opens.
The data source wizard has been customized to work with the database configuration settings held under the DashboardConnections key in the application settings, shown below.
At runtime, when the report is loaded, it will use the Name of the tag, e.g. DataMasterDashboard to pick up the connection string value and set the connection properties for the report.
Open the Dashboard Designer.
Select the Data Source tab. Click on the New Data Source button. This will open the new Data Source Wizard. It will display a list of connection names configured under the DashboardConnections key.
Select the connection from the list and follow the rest of the configuration settings in the wizard.
If the connection that you want to use is not available in the list OR if the data source in the list is on a remote server and not accessible and you will use a local copy to develop the dashboard :
Use the option 'No, I'd like to specify the connection parameters myself'. This will open the Data Source Wizard as shown below. Continue to configure the data source.
Click on the Rename button the the Data Source tab. Edit the name to be the same as the name configured in the DashboardConnections key.
Only users with the appropriate rights will be able to add, edit or delete Dashboards in WorkFlow. In WorkFlow Designer, if Dashboard are not showing in the explorer pane, check that the check box is checked for Dashboards in the Options Editor.
Click Manage > Dashboard on the left side menu as shown below.
This will open the form the manage Dashboards as shown below.
Complete the form and upload a dashboard definition xml file designed in the Dashboard Designer. The fields are:
Business Role: Users that are assigned to the Business Group can see the report in the left Menu, shown below.
Menu: When checked it will show up on the left side bar Menu
Refresh Rate: The duration after which the report will be refreshed. The default is 30 seconds.
Order: The sort order in which dashboards will be displayed in the left side bar Menu.
There are two ways to display dashboards in WorkFlow. The first option is to enabled the Menu checkbox when the dashboard definition file is uploaded, as shown above. The second option is to make it an option that is shown under the New option in the task navigation page.
Deploy a dashboard as shown above. In the grid note down the ID of the uploaded dashboard.
Create an Activity from the WorkFlow Designer.
Configure the properties using the Activity Configuration Wizard.
In the Hyperlink property, add the following value: dashboardviewer.aspx?id=<id>
. Replace the <id> with the ID shown in the
XMPro WorkFlow software requires a software license to run. New licenses are issued annually coinciding with the clients annual maintenance period.
Demo licenses are issued on request. To request a new or demo license, please log a service request call to XMPro Support.
You will receive an email with a text file attachment containing your license key.
A new license can either be applied in the WorkFlow Designer or through the administration website on the server.
Open the email attachment. Select and Copy (Ctrl + C) the License Key.
Login to the site through the WorkFlow Designer (File, Recent and click on the relevant site file). Provide your username and password and click login.
Click on the Help Tab of the Ribbon Bar.
Click on the License Manager.
Check the Update License check box
Paste (Ctrl + V) the license Key under New License.
Click Save.
Logon to the XMPro server.
Go to http://localhost/xxx/administration/genericwebservice.asmx.
Replace the xxx with the relevant site name (refer to your local XMPro web link).
Click the Update License option.
Add the new license and click Invoke.
If you experience any problems, please log a support call on XMPro Support.
On the ribbon, click File.
Click Options as indicated in the previous figure. The Options Editor will open.
Click Administration.
Click Site Administrator.
Click the Others tab.
Ensure that the Settings access rights have both Read and Write check boxes selected.
Click OK.
This procedure describes how to enable the WorkFlow Designer access rights control to allow or deny access to the WorkFlow Site Settings using the Access Rights Editor.
Prerequisites
You must be logged into the WorkFlow site
XMConnect uses an interface or plugin Framework to provide a standard way to connect XMPro to third part systems for example CRM, Database and Microsoft Word, etc.
Each connector has the following:
Connector Settings
The settings that can be configured before using the actual connector.
Initializing Parameters
The arguments defined for the connector retrieved from the Connector Settings.
Conditional Properties
You can define the value for one or more properties as a conditional expression that is evaluated according to the argument passed from the connector instance.
Input Properties
It’s the initial values required for the specified operation to be performed.
Output Properties
It’s the returned result set of the specified connector.
Operations
Is the specific action that is chosen to be performed for that Connector? (For example, Insert, update, Reassign Activity, Import or Export operations, etc.).
<image - basic architecture diagram for XMConnect>
The XMConnect interface is found by referencing the DLL XMPro.XMConnect.dll
contained with the bin folder of the particular WorkFlow.
The XMConnect plugin requires the implementation of the following interface:
<image - XMConnect interface provided>
A default constructor with no parameters must always exist in order to allow XMConnect to interact with the plugin.
void
SetHiddenParams(
Dictionary
<
string
,
string
> contructorParams)
Design time: 1
Run time: 1
Method Explanation:
This is the first method to be invoked by XMConnect after instantiating. XMConnect passes in a list of <Name, Value> pairs containing Plugin Settings defined in the XMConnector Management.
List
<
InitializingParameter
> GetInitializingArgumentList()
Design time: 2
Run time: n/a
Method Explanation:
Implement this function to provide a list of Parameters required to initiate the Plugin. Possible values along with the Type of Parameter can also be specified.
void
SetInitializingArguments(
List
<
initializingParameters
> initializingParameters)
Design time: 3
Run time: 2
Method Explanation:
Implement this function to get the values for the initializing parameters.
List
<
SourceObject
> GetSourceObjectList()
Design time: 4
Run time: n/a
Method Explanation:
Implement this function to list the Objects on which Integration is to be performed. Type of object can also be specified which includes list of allowed operations.
bool
isPreviewAvailable()
Design time: 5
Run time: n/a
Method Explanation:
This function specifies if preview of Source Objects is available. If yes then DataTable ObjectPreview(SourceObject sourceObject)
must return a valid DataTable
.
DataTable
ObjectPreview(
SourceObject
sourceObject)
Design time: after 5
Run time: n/a
Method Explanation:
DataSet
GetSourceObjectInputProperties (
SourceObject
sourceObject,
Operation
operation)
Design time: 6
Run time: n/a
Method Explanation:
Implement this function to return the properties required as Input for the selected operation. The return type is DataSet
, the columns of tables constitute object properties. The user will be able to map the properties to XMPro controls.
DataSet
GetSourceObjectOutputProperties(
SourceObject
sourceObject,
Operation
operation)
Design time: 7
Run time: n/a
Method Explanation:
If the operation is DataReturning
, implement this function to return the output properties of the selected operation. The user will be able to map the properties to XMPro controls.
DataSet
GetSourceObjectConditionProperties(
SourceObject
sourceObject,
Operation
operation)
Design time: 8
Run time: n/a
Method Explanation:
int
PerformNonReturningOperation(
String
sourceObject,
String
operation,
DataSet
dsIn, DataSet dsCon)
Design time: n/a
Run time: 3
Method Explanation:
This function will be called from Managed code if the operation is NonDataReturning
. In arguments: the object, to perform operation, will be specified along with the operation itself. DataSet provided by GetSourceObjectInputProperties(SourceObject sourceObject, Operation operation)
with DataTables
containing mapped data. Finally if the operation is conditional then a DataSet
containing DataTables
coresponding to dsIn Tables, each table contains data for Controls used in the Conditional Clause. Conditional Clause can be accessed by retrieving Extended Property "filter" of every Table in DataSet
.
DataSet
PerformReturningOperation(
String
sourceObject,
String
operation,
DataSet
dsIn,
DataSet
dsOut,
DataSet
dsCon)
Design time: n/a
Run time: 3
Method Explanation:
This function works exactly as PerformNonReturningOperation
except that it returns dsOut
filled with Data, every table contains control mappings and mapped values must be filled. If a DataColumn
has an Extended Property named "mapping" OR "browsemapping" then it is mapped and must be filled.
To add, update or delete a connector, follow the steps listed below:
In the Ribbon tab select Design, click Connectors Administration to open Connectors Manager Window
In the Connector Management window, click the row with asterisk (*) icon to add a new connector.
To Update a connector, select the connector to update. To edit a connector name, place the cursor on the selected connector.
Click Save button.
Any number of connectors can be registered as long as they have a unique name. Assembly-qualified name should be used.
Each connector registered can be access controlled and users of the WorkFlow Designer given specific access. This is done using the Options Administration Editor and using the Connectors tab to set specific access.
The XMPro Object Configuration Wizard enables the Configuration Consultant to configure the properties of a Field or Object on an Activity. Even though you will achieve the same result by using the Properties Window, this Wizard provides “less technical Consultants” with a more intuitive interface.
Open the relevant Activity from Process Explorer.
Set the properties of an existing field in the Activity. For a new field, drag the required object from the Toolbox and drop into the Work Area.
Right-click the relevant field or object.
Click XMPro Wizard. The Object Configuration Wizard window, General Tab will open. For a new field, the Object Configuration Wizard opens automatically once the object (field) is placed in the Work Area.
Enter the configuration values as required
Click the Options tab.
Enter the configuration values as required.
Click OK.
On the quick access toolbar, click the Save icon or press CTRL+S to save your activity.
The following deployment diagram shows an example on-premise architecture and the necessary resources for the XMPro WorkFlow in Microsoft Windows.
Start the installation process by downloading the executable installer file (called XMWorkFlowWeb.exe). Read through and accept the Microsoft license agreement when asked. Please note that an installer that would enable you to install the database and Web application will be installed first. When this installation is complete, you will be able to locate the WorkFlow installer from your Start menu, which will allow you to install one or more instances of the WorkFlow Web application and its database.
The installation process will proceed as follows:
Install the WorkFlow installer
Install an instance of the WorkFlow Web Application and Database
After accepting the Microsoft license agreement, you should see the welcome screen. Click Next.
Click Next.
Select the folder where WorkFlow should be installed. If needed, you can click on the Disk Cost button to see how much space is available and how much space you will need for the installation. Lastly, choose who this installation should be available for once complete. Should it be available for everyone that uses the machine you’re installing the software on or just for you?
Click Next and confirm the installation.
Click Next to confirm the installation.
When the installation is complete, click Close.
To start the installation process for the WorkFlow Web application and database, select “XMPro WorkFlow” in your start menu.
You will be presented with a welcome screen as soon as the installer opens. On this screen of the wizard, choose “Install a new WorkFlow Site” and click Next.
The Installation Details form requires you to check installation details mainly focused on how the Web application will be installed in IIS.
Company
Enter the name of your company in the Company Name field.
Application Pool
Next to the Application Pool Name field, click on Change. Choose which application pool the application should use. You can either create a new application pool or select Use an existing Application Pool and select an existing application pool from the drop-down.
Next to the Security Account field, click on Change. Choose which security account you would like to use. The following options are available:
Network Service
Local System
Local Service
Alternatively, specify your own security account by selecting Specify your own Security Account and filling in your username and password.
Virtual Directory
In the Virtual Directory section, verify that all the values are correct for each of the fields using the table below.
The Database Details form mainly focuses on capturing the details required to be able to connect to an existing SQL Server WorkFlow database or create a new one that can be used for the Web application that is to be installed.
Database Server
In the Database Server Name field, fill in the name of the server on which either an existing WorkFlow database that can be used can be found or where a new WorkFlow database can be created. Clicking on Reload will load all available servers, enabling you to choose a server from the drop-down.
Authentication Method
Either Windows or SQL Authentication can be used to connect to a WorkFlow database. Windows Authentication will, by default, is selected. To change the authentication method, click on Change. Next, fill in your SQL username and password and click OK.
Database Details
The default values filled in this section will cause the installer to attempt to create a new database on the selected server. If you would like to use an existing database, click on Change. Next, click on Connect to an existing database and choose the name of the database to which you would like to connect from the drop-down. If you would like to make a back-up of your database in case something happens or if you think you might need it later, select Backup my existing database and specify the Backup path.
On the Administrator Configuration form you are required to provide details for an administrative user. Fill in your first and last name and specify the name and group of the first role. Next, note that three authentication options are presented to you as a way of logging into the Web application:
Windows Authentication
This will allow you to use Windows Authentication for authentication.
Custom Authentication
Choose your own username and password here. Use this username and password to log into WorkFlow once it is successfully installed.
Fill in your licensing details. Click Next.
Specify which language should be used in the site. Two options are available:
CSharp
VBNet
Enter your Web service proxy details. Details for Proxy Host can be left blank and for Proxy Port kept to the default "8080".
Click Next.
Lastly, verify that all the details that you have specified are correct. If you’re satisfied, click Next.
Once the installation is complete, you will be notified. You will be able to access the WorkFlow site by opening it from IIS or adding the URL into your browser. What the URL is will depend on the site details you’ve specified, for example, if the site was installed using HTTPS, the DNS host name was “mysampleserver.com” and the virtual directory name was “workflow“, the URL will be “https://mysampleserver.com/workflow/“.
Check Hardware and Software requirements relating to the WorkFlow Designer first.
Check to make sure there is enough free disk space on your hard disk to meet the system requirements.
The following section includes procedures to install the WorkFlow Designer.
Download and double-click the XMWorkFlowDesigner.exe to start the installation process. The Installation Wizard displays.
Click Next. The End User License Agreement is displayed.
Click I Agree or I Do Not Agree to the License Agreement.
Click Next. The Installation Wizard displays the default directory in which the software will be installed.
Change the directory if required by clicking on Browse and providing the required directory.
Click the Everyone or Just Me Radio Button and click Next. A message will be displayed that the Installer is now ready to install the software.
Confirm the installation by clicking Next.
Installation Complete is displayed once the installation is completed. Click Close.
Start the installation process by downloading the executable installer file (called XMWorkFlowMonitor.exe). When this installation is complete, you will be able to locate the WorkFlow Monitor installer from your Start menu, which will allow you to install a WorkFlow Monitor instance.
Click the XMWorkFlowMonitor.exe, this opens the WorkFlow Monitor Setup Wizard.
In the Welcome window of the WorkFlow Monitor Setup Wizard, click Next.
Read through the License Agreement, select 'I Agree' and click Next.
Specify the installation folder. Select 'Everyone' or 'Just me' to Install XMPro WorkFlow Monitor for yourself, or for anyone who uses this computer. Click Next.
Click Next to confirm Installation.
Click Close once installation is completed.
Access the WorkFlow Monitor installer from your computer's applications.
Setup WorkFlow Monitor via the wizard. Click Next to continue.
Select Install WorkFlow Monitor, click Next.
Enter the Installation Details. Click Next.
Specify the Database details and click Next.
Enter details in the SQL Authentication Settings window.
Specify the Web Application details and click Next.
Confirm Installation and click Next to proceed.
Click Finish to complete the installation wizard.
To verify that WorkFlow Monitor is installed correctly, check that:
Web UI is created
Database is created
If the WorkFlow Monitor is not started, it will give the error message when trying to login into the WorkFlow Monitor Web UI.
If WorkFlow Monitor is installed correctly, the following Web UI will be displayed.
The Transfer Manager allows you to export and import processes from one site to another. You must first export your site or process before you can import it into another site.
On the ribbon, click the Publish tab, in the Deployment group, click Transfer Manager. The Transfer Manager opens.
Click Next.
Click Export from the current site (to a file) radio button.
Click Next.
Click Browse to select a location and file name for your export.
Click Next.
Select the kind of data export operation you would like to perform. Click Next.
Depending on the selection made in the previous step, select from the list the data you would like to export.
Click Next. The following figure displays a summary of the options selected.
Click Next. The export process may take some time. Please wait.
Click Next. The following figure displays whether or not the export has completed successfully.
Click Finish. The file will be available in the location as specified. The file will have a *.tmf extension.
On the ribbon, click the Home tab, in the Process Tools group, click Transfer Manager. The Transfer Manager opens.
Click Next.
Select Import to the current site.
Click Next.
Browse to select the file you want to import. The file name will have a *.tmf extension.
Click Next. The Transfer Manager will display a summary of the selected options.
Click Next. You will receive a message indicating if your import was successful.
Click Finish.
Note: Remember that you always need to first export from one site before you can import into another site.
WorkFlow now offers the ability to anyone with administrative rights to change the styling inside WorkFlow for their company. Each of the elements that can be changed, along with the styles that can be changed on them, are listed on a page that can be accessed from the menu on the left.
In this example, we will be changing some of the styles of the application header and sidebar, containing the Home button, sidebar application buttons and XMPRO logo. Log into WorkFlow with an account that has administrative access and follow the steps below:
Open the Site Styles page from the left-hand menu.
In the Header area, change the font to “Brush Script MT”.
Change the Sidebar Background Color to “#003366”. You can change the color by either typing in the value or by choosing a color from the drop-down field.
Change the Sidebar Hover Color to “#008080”
Click Save.
Press F5 on your keyboard to refresh the page.
Click Access Rights (Collection) menu. The Access Rights Editor will open.
Click on the icon to add a new dashboard, shown below.
Name: The unique name for the dashboard. This is required field. This is the name that will be shown in the Dashboard menu item .
Click the Access Rights (Collection) menu. The Access Rights Editor opens.
Carefully read through the license agreement and select the I Agree option. Please note that you will not be allowed to continue with the installation unless you agree to this license agreement. If you have any questions or if there is something you don’t understand, don’t hesitate to .
Web Site
The Web site referred to here is the site you would like to use in IIS, for example Default Web Site (automatically selected in the screenshot below this table; this is the first Web site generally created for standard Windows machines on which IIS is available).
Virtual Directory Name
This is the name of the directory in IIS of the Web application that is being installed.
DNS Host Name
The DNS host name is the name of the host on which the Web application is being installed. The Web application will normally be installed to run under HTTP. If you would like to change this, select HTTPS from the drop-down next to the DNS Host Name label.
Content Directory
The content directory is the directory in which the content of the Web application will be stored. Click on the ellipse button next to the field to change the directory.
Create a Sub-Directory
Checking this box will cause the installer to create a sub-directory within the content directory.
Installation Path
The installation path is the full path of where the Web application will be created. This path is the content directory and the sub-directory combined.
Unclassified
DataGrid.aspx - massive SQL injection issues as SQL statement provided in URL.
Scheduler functionality.
Removed
OleDB Provider support
OleDB Provider support removed.
Removed
Social Logins
Oauth from Social logins, i.e., Facebook, LinkedIn, SalesForce, SAP, X (formerly Twitter) and WindowsLive is removed.
Removed
SharePoint support
SharePoint support removed.
Removed
Authentication from Subscription Manager
Authentication from Subscription Manager removed.
Enhancement
ActivityDisplay.xsl
JavaScript included in this file (ActivityDisplay.xsl) is moved to ActivityDisply.js
file in the scripts folder. This means the ActivityTransformations.dll's were changed.
Enhancement
site.config
, license
Encryption used for site.config
, license and other things. This means extra step added in upgrade process.
Enhancement
SAML2 Authentication
Change in site.config layout. Moved under new Authentication Key.
Enhancement
UseSQLServerStoredProcedures
UseSQLServerStoredProcedures
is set to "Always True".
Removed
Advanced Browse Page
This object type has been discontinued a few versions back.
Fix
Visio Support
Visio support still enabled, only for x64. Option to enable Visio in Designer if needed is added. It is disabled by default.
Removed
Import/Export in Transfer Manager
Removed customs file options.
Enhancement
Import/Export in Transfer Manager
New options: - Process Groups - Processes - Activities - New: Business Groups (Business Groups and Roles only, Users not included) - Connectors - Languages
Removed
Import/Export in Transfer Manager
Removed entities and mapping as export.
Removed
Import/Export in Transfer Manager
Removed Business Entities in WorkFlow Designer.
Removed
Import/Export in Transfer manager
Removed in UI to view Business Entities in WorkFlow.
Removed
Activity preview pane
Activity preview pane removed in Designer.
Removed
Advanced Browse Page
This object type has been discontinued a few versions back.
Removed
Report Designer
Report Designer removed in WorkFlow, still available through WorkFlow Designer.
Enhancement
Two tables added in Logs - EmailLog - every email sent from Activity Server is logged - ErrorLog - errors raised in activity processing, e.g., error thrown on submit is logged
Enhancement
Email Oauth added as an option. extra key/value added as an option under Alerts/Email/Server/Security - AuthenticationMode: Basic or Oauth - TennantID,ClientId and ClientSecret: Used if AuthentionMode = Oauth
Click on the Administration tab.
Click on User Editor. Make sure you are on the Designer tab in the User Editor (the Editor tab is used by advanced users enabling them to create users faster).
Drag the User icon from the Toolbox to the User Editor.
Select the New User, now in your User Editor work area.
Click the Properties tab and configure the properties of the new user as follows:
Click on Role under Attributes and select the New User’s Role.
On the quick access toolbar, click Save icon or press CTRL+S to save your changes. The asterisk next to the tab User Editor will disappear. An asterisk indicates that the record has not been saved.
On the ribbon, click the Administration tab.
Click User Editor. Make sure you are on the Designer tab in the User Editor (the Editor tab is used by advanced users enabling them to create users faster).
Select the user you want to edit (click on the relevant user icon).
Click the Properties tab and configure the properties of the existing user as required.
On the quick access toolbar, click Save icon or press CTRL+S to save your changes. The asterisk next to the tab User Editor will disappear. An asterisk indicates that the record has not been saved.
On the ribbon, click the Administration tab.
Click on User Editor. Make sure you are on the Designer tab in the User Editor (the Editor tab is used by advanced users enabling them to create users faster).
Select the user you want to delete (click on the relevant user icon). Then click Delete icon on the top taskbar, click OK to confirm.
On the quick access toolbar, click Save icon or press CTRL+S to save your changes. The asterisk next to the tab User Editor will disappear. An asterisk indicates that the record has not been saved.
All user passwords are encrypted. An Administrator will never be able to “see” a user password and will only be able to reset it.
Rules for Passwords are set in the Application Settings.
On the ribbon, click the Settings tab within WorkFlow Designer.
Click Workspace.
The following parameters can be set: DefaultPassword, Password Expiration (in days), Password History (no of months a password cannot be re-used), PasswordInactivityTimeout (days), PasswordPattern (rules for password – according to best practise), LoginAttemptCount (after, for example, 3 the account will be locked). A “0” (zero) value means there is no value set.
The first time a user signs on they will use the Default Password as set in Application Settings (explained above). They will be required to change this Default Password and specify their own password.
If you forgot your password, the Administrator will be able to reset the password.
On the ribbon, click the Administration tab.
Click User Editor.
Click the User icon of the user that forgot their password.
Click the Properties tab.
Provide a New Password.
Confirm the Password.
Click OK. When the user signs on they will be required to change their password.
The LoginAttemptCount parameter in Application Settings (as explained earlier) will determine after how many unsuccessful login attempts the user’s account will be locked. The Administrator will use the Account Lockout function to unlock the account as in the following figure.
On the ribbon, click the Administration tab.
Click on Account Lockout. The Account Lockout Management window displays.
Click the Account that is locked.
Click the > button to move the locked account to Accounts to be unlocked.
Click OK. Once the account has been unlocked the Administrator must reset the user password (as explained earlier) and notify the user of their new password. The user will be prompted to change their password the first time they sign on.
Click from the Identification Reset Password properties.
The Process Group is the topmost structure in a process. It is a logical grouping of different processes.
Description
Use this property to specify a short description for the process group
ID
A numerical value which uniquely identifies this process group. This property is automatically assigned, and used internally by XMPro.
Name
This property specifies the name of the process group. This name uniquely identifies the process group. On the New page where new processes are started in WorkFlow, this heading that will be shown.
In the Server Explorer, double click on the Process Groups node. This will open the process group's document window in the main work area.
In the Toolbox, make sure you are in the Processes category.
Drag a Process Group from the toolbox to the main work area.
In the main work area, select your new process group.
In the Properties window, configure the properties for your new process group.
Click on Save icon from quick access toolbar; or press Ctrl + S on your keyboard to save the process group.
In the Server Explorer, double click on the Process Groups node. This will open the process group's document window in the main work area.
In the main work area, select the process group you want to edit.
In the Properties window, configure the properties for your new process group.
Click on Save icon from quick access toolbar; or press Ctrl + S on your keyboard to save the process group.
In the Server Explorer, double click on the Process Groups node. This will open the process group's document window in the main work area.
In the main work area, select the process group you want to delete.
Click on Delete icon from the quick access tollbar; or press Ctrl + D on your keyboard to delete the process.
When prompted, click on OK.
Click on Save icon from the quick access toolbar; or press Ctrl + S on your keyboard to save the process.
The WorkFlow Designer has an option to enable the use of Visio to design processes. The images below shows the Microsoft Visio design interface. The concepts on how to use wizard for activities are the same in the non-Visio environment.
The purpose of the Report Designer wizard is to provide a fully integrated tool to create reports in XMPro. The DevExpress End-User Report Designer is used to provide this functionality. Access the Report Designer from the WorkFlow Designer, Design tab, Report Designer.
This procedure describes how to open the XMPro Report Designer using the WorkFlow Designer.
If the Report Designer is grayed out, contact your Site Administrator.
On the ribbon, click the Design tab, click Report Designer from the Reporting Group in WorkFlow Designer. The XMPro Report Designer opens.
This procedure describes how to display a report in WorkFlow Designer.
Access the Fast Field Editor by double-clicking the Reference Label control.
Remove the Width setting.
Remove the Caption.
Give it a relevant name.
Drag a new Reference Label control onto the activity.
In WorkFlow Designer, open the particular Activity you would like to display the report on.
Check the OnLoad box under the Behaviour section.
Select the Report Link radio button.
Enter the Report Name (this should match the name of the report setting created earlier).
Set Width to 100%.
Select the database connection to use.
This procedure describes how to deploy a report in WorkFlow Designer.
The following prerequisites must be met to deploy a report.
Create an Activity from the WorkFlow Designer.
Configure the properties using the Activity Configuration Wizard.
Right-click the Activity and select XMPro Wizard.
Ensure that the Static field contains the Report: keyword. For example, Report: Loan Application Report.
Configure the Routing Type and Routing Group.
Click Advanced tab.
Select the Trigger Style.
Click OK.
On the quick access toolbar, click Save icon or press CTRL+S to save your changes.
On the ribbon, click the Administration tab in WorkFlow Designer.
On the ribbon, click Reports in the Custom Settings group. The customSettings\XMPro\Reports directory displays a list of existing Reports.
Click Setting and provide the values as follows:
Name: This should match the filename of the report file but should exclude the “.repx” extension. e.g., For a report file SalesReport.repx, the setting should be SalesReport
Value: This should contain the full physical path to the report file including the “.repx” extension
Type: This should be set to “value”
On the quick access toolbar, click Save icon or press CTRL+S to save your changes.
This procedure describes how to rebuild the report dataset in the XMPro Report Designer.
When the underlying data source changes, the Data Set needs to be rebuilt as follows:
In Report Designer, delete the existing Dataset and Table Adaptor.
Open the Data Source drop-down from the Property Grid and select Add New DataSource.
Run the Report Wizard and configure the data source.
Once the data set has been rebuilt the new or changed fields can be added to the report.
Existing fields should not need any changing unless the underlying dataset field names have been changed.