Hey,
Velo has to know how to create the user name,
Most common scenario is that it just generated by some attributes
(like firstname+lastname) or whatever you wish,
Create a new file under VELO_HOME/velo_ws/scripts/user-plugin-id.grv
Here's an example of a small script that will take FIRST_NAME +
LAST_NAME attributes, combine them together as the user name:
--
def userIdAttrs = context.get("userIdAttrs");
fName = userIdAttrs["FIRST_NAME"].firstValue.asString;
lName = userIdAttrs["LAST_NAME"].firstValue.asString;
String finalUserId = fName + "." + lName;
context.set("userName",finalUserId);
--
Asaf.