Information about Servoy user login ?

I would like to display somewhere the name of the servoy user login for the application , the time login occurs, …

Is there someone that can tell me where I can find these information ?

They should be available somewhere on a table or using a function ?

:?

DomTom

Have a look at the “security” node in the method editor. There you can do things like

var currentUser = security.getUserName(); (out of my head)

Login time you have to program yourself, for example by having a session table that you populate after login.