function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
SirishaMSirishaM 

How to restrict related lists update

Hi,

I have an object and I allow the user to update the object only before some deadline. My problem is I wrote a trigger
which restricts the update of the object based on the deadline. But the relatedlists of the object get updated even after the
deadline.

One of my related lists is Notesandattachments . I was able to add attachments even after the deadline. Is there a way to restrict the update of attachments ?

Kindly help.

Thanks,
Sirisha

micwamicwa
Yes, just write a trigger on the attachment object as you did for the other object.
SirishaMSirishaM
Thanks for the reply. But can you please tell me how to write trigger on NotesAndAttachments for a specific object ?
I cud only create a trigger on the objects so for . Since I dont see any standard object named NotesAndAttachments how can I write a trigger?

Any ideas?


Sirisha

TCAdminTCAdmin
Hello SirishaM,

Unfortunately the Notes & Attachments object does not allow triggers to be attached to it. This is a custom object that can only be accessed by the system UI and not through any Apex triggers.