Loggedin user keyword

Good day!


I would like to ask about what is the loggedin user keyword. I have an asset builder that will create a single event calendar after the user logs in. I want to let the user edit the event they made, and the editing should not be possible if the calendar event is not created by the loggedin user. What I am thinking is put a trap under the edit page that if asset_created_by_name is not equal to the loggedin user then they cannot edit the event… Any ideas on this guys?? I am looking forward to your responses… :slight_smile:

You would normally just do this using permissions. When a user creates an asset, they get write access. You can list calendar events that the user has write access to and allow them to edit each one.

yeah… but i grant the write permission to all the backend user so everyone can edit each event even if they are not the owner of that event…

To print the name of the current user try the keyword: %globals_user_name%

wow… thanks Greg, thats exactly what im looking for… I tried finding it under the keywords manual with the user's keywords but to no avail… Thanks!