Object should not be empty

0
Hi everyone, I’m having lots of issues since trying out my project on the Beta 3 modeler. To use my app, you are required to create an account. For some reason, when I retrieve the current user from my database with [system.owner = '[%CurrentUser%]'], it returns nothing. Thus no object is passed to the page. I get the following error: com.mendix.core.CoreException: com.mendix.modules.microflowengine.MicroflowException: requirement failed: Page object 'User' should not be empty. at ProjectManagement.ACT_CreateOrRetrieve_HoursRegistration (ShowPage : 'Show 'ProjectHour_Overview'') Does anyone know how to solve this? Thanks in advance! Renze
asked
1 answers
0

The current user is available as variable in your microflow: $currentuser.

You are trying to retrieve the owner (creator) of a record and it might be that you do not have access to this particular record.

answered