In Flowable IDM for each user there are specified user id, email, first name and last name.
In a process model I can pre-fill a from field with the full name of the initiator using groovy script like this:
execution.setVariable(“someFormFieldId”, initiator);
This gives me the first name and last name pre-filled in my form.
Is there a way to similarly access the id, email, first name only and last name only?
There was a similar post some time ago that was not commented: