How to disable renaming/removing attachmentsIssue How to disable renaming/removing attachmentsCauseHere 2 things have been asked, renaming and removing. We have to remember first that these 2 things are not the same by virtue of their functionality. Renaming functionality, both from the attachment dialogue and on the top of the form, is managed by the UI macro named 'attachment_entry'. This macro, at present checks, if the user has the access to add an attachment to the table or not. There is no separate check for renaming. As per current behaviour, if the user can add an attachment to the form, he/she will be able to rename the file also. This is managed by the below UI script's code: /sys_ui_macro.do?sys_id=2c43bf710a0a0b39001e825b1ea82b4f Removing functionality is managed by the Access Control list or ACLs. Based on the ACL placed on sys_attachment table, users will be able to remove attachments from the record. Since the deletion is basically deletion from the sys_attachment table, hence ACL needs to be checked and evaluated on the same table, not on the table the attachment is linked to.ResolutionFor the Renaming scenario: The UI macro 'attachment_entry' needs to be changed as per the requirement. For the Removing scenario: 2 scenarios can be spun on usual customer requirements. a. If the requirement is, that no users except admin would be unable to remove any attachments from any tables, then the customer would have to create a delete ACL on sys_attachment table, by providing relevant conditions and roles. b. If the customer wishes to restrict users to a specific table, then the option is to modify the above ACL in the script part, to check for relevant table and user. Currently, in OOB, any users can delete the attachments, for which access is granted by OOB delete ACL on sys_attachment table. However, as your requirement, new ACLs can be created to override those. Related LinksThere is a way to completely remove the attachment function for a specific table, even attaching one. I suppose you are not looking for that right now, but still, it would be good to have handy for any requirement. Here is the KB for the same. Ref: KB0718491