- Release notes
- Getting started
- Installation
- Configuration
- Integrations
- Authentication
- Working with Apps and Discovery Accelerators
- AppOne menus and dashboards
- AppOne setup
- TemplateOne 1.0.0 menus and dashboards
- TemplateOne 1.0.0 setup
- TemplateOne menus and fashboards
- TemplateOne 2021.4.0 setup
- Purchase to Pay Discovery Accelerator menus and dashboards
- Purchase to Pay Discovery Accelerator Setup
- Order to Cash Discovery Accelerator menus and dashboards
- Order to Cash Discovery Accelerator Setup
- Basic Connector for AppOne
- SAP Connectors
- Introduction to SAP Connector
- SAP input
- Checking the data in the SAP Connector
- Adding process specific tags to the SAP Connector for AppOne
- Adding process specific Due dates to the SAP Connector for AppOne
- Adding automation estimates to the SAP Connector for AppOne
- Adding attributes to the SAP Connector for AppOne
- Adding activities to the SAP Connector for AppOne
- Adding entities to the SAP Connector for AppOne
- SAP Order to Cash Connector for AppOne
- SAP Purchase to Pay Connector for AppOne
- SAP Connector for Purchase to Pay Discovery Accelerator
- SAP Connector for Order-to-Cash Discovery Accelerator
- Superadmin
- Dashboards and charts
- Tables and table items
- Application integrity
- How to ....
- Working with SQL connectors
- Introduction to SQL connectors
- Setting up a SQL connector
- CData Sync extractions
- Running a SQL connector
- Editing transformations
- Releasing a SQL Connector
- Scheduling data extraction
- Structure of transformations
- Using SQL connectors for released apps
- Generating a cache with scripts
- Setting up a local test environment
- Separate development and production environments
- Useful resources
LDAP for End Users
There are two ways of giving end users access to the UiPath Process Mining platform:
- Manually define users in End-user administration which you can open from the Releases tab of the Superadmin page.
-
Setting up LDAP (AD) synchronization.
Important: With LDAP synchronization users will be added or updated in the list of users in End-User Administration.
This page describes how to set up LDAP to give end user access to UiPath Process Mining.
Active Directory Domain Services
must be installed on the UiPath Process Mining server. Follow these steps to verify whether the Active Directory Domain Services
service package is correctly installed.
Step |
Action |
---|---|
1 |
Open a Windows Command Prompt. |
2 |
Enter the command
dsget and press Enter.
|
dsget
help text is displayed at the command prompt, the Active Directory Domain Services
service package is working properly.
builds
folder of your UiPath Process Mining installation folder:
Config.json
,Syncad.js
,-
Syncad.bat
.Note: You can create the files yourself from the code samples in the corresponding sections below.
ldap
setting of the Server Settings.
See Set up LDAP.
ExternalAuthentication
setting in the ApplicationSettings.json
file.
ApplicationSettings.json
file.
Step |
Action |
---|---|
1 |
Go to the Superadmin Workspaces tab. |
2 |
Click on the Workspaces menu icon. |
3 |
Select Application settings.... |
4 |
Enter the following line:
|
6 |
Click on OK to save the changes and to close the
ApplicationSettings.json file.
|
OverrideApplicationSettings
setting in the Server Settings to make the ExternalAuthentication
setting applicable to the entire UiPath Process Mining installation.
In this case, you do not need to specify the setting in Application Settings.
OverrideApplicationSettings
setting in the Server Settings.
Step |
Action |
---|---|
1 |
Go to the Superadmin Settings tab. |
2 |
Enter the following lines:
|
3 |
Click on SAVE. |
4 |
Press F5 to refresh the Superadminpage. |
Config.json
file contains an entry for each Active Directory (AD) group – Application combination. It should contain the following properties:
Property |
Description |
---|---|
|
The Full Name of Active Directory Group of users that are allowed to login. This looks like
"CN=All Users,OU=Distribution Groups,DC=Company,DC=com" .
|
|
The Application code of the app or module to which the AD group needs to get access to. |
For more information on how to find the Application code see FAQ: Application code.
In the syncad.js file, change the following line to match your settings for the LDAP connection to the Active Directory.
const loginString = ["-s","SERVER ADDRESS","-u","AD USER","-p","AD PASSWORD"];
syncad.bat
for user synchronization.
By default the fields in End-User Administration are not editable when using LDAP synchronization.
fieldsAlwaysEditable
setting in the ApplicationSettings .json
file to specify which fields in End user administration are editable.
ApplicationSettings.json
file.
ApplicationSettings.json
file.
fieldsAlwaysEditable
in the Search bar for a detailed description
on the fieldsAlwaysEditable
setting.
OverrideApplicationSettings
setting in the Server Settings to make the fieldsAlwaysEditable
setting applicable to the entire UiPath Process Mining installation.
In this case, you do not need to specify the setting in Application Settings.
Config.json
file.
[
{
"ADgroup" : "CN=AdTestGroup,OU=Users,OU=MyBusiness,DC=Magnaview,DC=local",
"appcode" : "p"
},
{
"ADgroup" : "CN=AdTestGroup,OU=Users,OU=MyBusiness,DC=Magnaview,DC=local",
"appcode" : "p2"
}
]
[
{
"ADgroup" : "CN=AdTestGroup,OU=Users,OU=MyBusiness,DC=Magnaview,DC=local",
"appcode" : "p"
},
{
"ADgroup" : "CN=AdTestGroup,OU=Users,OU=MyBusiness,DC=Magnaview,DC=local",
"appcode" : "p2"
}
]
You can copy this code sample to a new empty file and adapt it with our own data.
Syncad.js
file: Syncad.js. You can copy this code to a create the file.
Syncad.js
script, e.g. active : 1
, these attributes will not be synchronized.
- Introduction
- Prerequisite
- Step 1: Preparation
- Step 2: Configure LDAP Settings
- Step 3: Enable External Authentication
- Global Settings
- Step 4: Adapt Config.json
- Step 5: Adapt Syncad.js
- Step 6: Schedule a Task for the Synchronization
- Troubleshooting
- Making Fields Editable in End-User Administration
- Code Samples
- Config.json
- Syncad.js
- Syncad.bat