I am using now the access control list which works as expected : I have adapted SQL clauses accordingly.
Ex of SQL clause :
Code: Select all
SELECT
status.*,
task.*
FROM
status
JOIN task ON task.tsk_status = status.status_id
WHERE
((task.tsk_assigned_to ='#USER_CODE#'))
There is maybe another way to implement access control list ? If yes, is there any example of that ?
Many thanks for your help.
Yves