Mass user creation in the Java UME


Welcome (back)!

User and authorization administration in the Java stack is a pain in the neck – that’s a fact! The identity management tools are inferior as compared to the ABAP stack, but nevertheless, there are ways to make your life a bit easier…

Mass user maintenance in the UME

When it comes to mass user creation/modification in the Java UME (database only, no ABAP- or LDAP-data source), no tool like SU10 exists and many admins choose the hard way of creating users one by one… but wait… the “Identity Management” screen has an “Import” button:

Java UME User Import

Standard Format for UME imports

The screen behind that “Import” button provides not much more than a text field, which needs to be populated with user master data in the correct format (btw.: the amount of importable data is limited to 1 MiB).
The import format is documented here, but SAP provides no easy solution to create data in that format.
This is – you probably guessed it – the point, where my solution comes in.

Generally speaking, the “Standard Format” – as SAP calls it – is similar to the format of many .ini files and thus quite simple.
It can be used to create and modify users, groups, and roles — for users, a typical import record looks like this:

[User]
uid=dberlin
password=trustno1
first_name=Daniel
last_name=Berlin
email_address=
role=Administrator;SAP_SLD_ADMINISTRATOR;

Squeeze mass user data into the Standard Format

For this task, I’ve prepared a very simple Excel file for you… download it here:

Microsoft Excel file
(click to download)
Java UME user import: Excel sample

You can insert the user name, first and last name, password and up to three roles for up to 100 users into column A-G.
The formula in column H generates the expected format from the input data.

When finished, simply mark the cells in column H starting from line 2 (i.e. without the header).

Unfortunately, Excel is a very smart tool 😕 and automagically inserts quotation marks around the copied cells.
You need to remove these quote signs manually from the copied data…
Alternatively, you can also copy the clipboard’s contents into an empty Word document, then copy everything again – that way the quotes are removed, too.

Afterward, paste the data into the text area on the Import screen of the Identity Management; then click “Upload”.

Java UME user import: Upload textarea

The protocol on the next screen contains information about the import result.

Java UME user import: Protocol

See you then!

+++ End of article +++