After upgrading to 15.9.2, even though that entitled users have all the To Do - * rights, the To Dos menu item does not show in the Modern UX.
Accessing the To Dos page directly shows this error: API-1007 : You are not authorized to process request. Contact your system administrator for necessary security rights.
Also, the user cannot create any new To Do items from tasks. The same error is displayed.
Release : 15.9.2
Component : Clarity MUX UI Usability
There could be some missing rights that should be reviewed by Support.
Please raise a new case with Support and provide the results from the following query:
SELECT
cso.object_code,
csr.right_type,
csr.permission_code,
csr.is_active,
csr.permission_value,
csr.right_obs_type
FROM
cmn_sec_objects cso
JOIN cmn_sec_right csr ON csr.object_id = cso.id
WHERE
lower(object_code) LIKE '%to%do%'
ORDER BY object_code, right_type, permission_code;
Similarly, if the issue occurs with Pages instead of To Dos, replace the WHERE clause from the query for the following:
WHERE
lower(object_code) LIKE '%page%'