I want to register a user from the entity that received the DB information

0
Hello, I'm thinking of registering user information using the user function that comes standard with Mendix. In the standard user registration, registration is done using the information entered in the Account_New page, but in my case, I plan to register using the information received from the DB connecter. Could you tell me how to register the user from the entity that received the information from the DB connector?
asked
1 answers
1

1 thing you can do is attach an Event Handler to the Entity that receives data from your DB Connector (from your message it is not clear what is a DB connector)

AfterCommit event handler seems like a good idea.

In the event handler Microflow, you can collect the data and call the Account Creation Microflow (of the Administration module)

answered