PHPMaker v2025.9
I have a module where I set my field RECIPENT’s Lookup table pointed to USERS table (I use this table for my project login as well) with multiple select enabled. I set the USEREMAIL as link field and USERNAME as Display Field.
If I login as Super Admin, there is no issue displaying the value in Display Field.
If I create a normal user role, even if I checked ALL the permission for my USERS table, it doesn’t show the value of Display Field in the List Page. It can only show correctly when in the Edit Page.
I checked the Debug, the query is wrong for the List Page (login as non-administrator but given full permission to USERS table) as it only show my own record although I have granted full permission.
SELECT [USEREMAIL] AS [lf], [USERNAME] AS [df], '' AS [df2], '' AS [df3], '' AS [df4] FROM VIEW_USERS WHERE [USERID] IN (N'myuserid') ORDER BY [USEREMAIL] ASC
Just for testing, I checked all the permission but it still doesn’t show the Display Field value in List Page of my module.