From version 4.5 it is possible to upload users to the web viewer using XLSX files. Function is applicable when users are stored in web viewer.

Overview

The purpose of the function is to allow to upload users in admin section to make it easier to batch add users for e.g. OEM customers. In admin section of users an upload icon now exists. Click on the button and it is possible to upload an XLSX file with users.

Select to import users and select a file with users. In version 5, a popup will display as below. In earlier versions, file is uploaded in the first page.

At successful import number of imported users will display.

Prior to import a validation of the content is executed and possible validation errors are shown.

Notes

Configuration

Import function is configured in profile.config.

<UserManagementSettings>
  <!-- Function enabled -->
  <ImportUserEnabled>true</ImportUserEnabled>
  <!-- Users with no customer will be skipped -->
  <IgnoreEmptyCustomerNumber>true</IgnoreEmptyCustomerNumber>
  <!-- Only customers with calid customer numbers are accepted -->
  <CustomerNumberValidationRequired>true</CustomerNumberValidationRequired>
  <!-- Define a template for the upload to make it easier for the users -->
  <UserImportTemplateFileNames>
	<XlsxFileName>Users.xlsx</XlsxFileName>
  </UserImportTemplateFileNames>
</UserManagementSettings>