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
LeonardLeonard 

Where do I manage permissions to allow a user to create new Triggers on a custom object?

The user doesn't see a new button in the "Triggers" area when viewing a custom object. How do I activate permissions to allow that?
JimRaeJimRae

You can only create triggers in development, not in production.  The user would also need the "Author Apex" permission on their profile.

The process is:

Create the trigger in the Development environment.

Create a test class to test the trigger functionality, with minimum of 75% coverage.

Deploy the trigger and the test class to production, using either: Ant, Eclipse or the "Change set" methods.