Known Issue - Users unable to upload Documents to Portal Documents - Fixed 7/12/2019
M
Minott Opdyke
started a topic
almost 4 years ago
Update: This issue was fixed in the 7/12/2019 update
When a user tries to upload a document to a Portal Document they receive a 'Permission Denied' error. This happens when a user, or a group a user belongs to, has previously had permission to the DCS table. Normally, only Read, Insert and Update to Portal Options should be necessary to manage Portal Documents. If the permission to the DCS table is deleted, the user can upload documents. This may be done through SQL.
To find which Users/Groups have a permission for DCS
SELECT * FROM UGP WHERE TC LIKE 'DCS'
To see who they are:
SELECT * FROM UGN WHERE UID = 1084 OR UID = 1087
Then to delete the record. DELETE FROM UGP WHERE TC = 'DCS' AND UID = 1084 DELETE FROM UGP WHERE TC = 'DCS' AND UID = 1087
Besides deleting the UGP record, be sure to remove any permissions for Users/Groups to DCS in the Security area.
Minott Opdyke
Update: This issue was fixed in the 7/12/2019 update
When a user tries to upload a document to a Portal Document they receive a 'Permission Denied' error. This happens when a user, or a group a user belongs to, has previously had permission to the DCS table. Normally, only Read, Insert and Update to Portal Options should be necessary to manage Portal Documents. If the permission to the DCS table is deleted, the user can upload documents. This may be done through SQL.
DELETE FROM UGP
WHERE TC = 'DCS' AND UID = 1084
DELETE FROM UGP
WHERE TC = 'DCS' AND UID = 1087
Besides deleting the UGP record, be sure to remove any permissions for Users/Groups to DCS in the Security area.