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
archCoolarchCool 

Object not triggerable

I have a BPO(base platform object) which is a standard object. The are no triggers under this object. Looks like this object is not triggerable. I stilll want to be able to write triggers on this object. What can I do?

sfdcfoxsfdcfox
Not all standard objects have a "Triggers" section, but that doesn't mean it can't be triggered upon. Check the documentation on the matter. If the documentation states that it isn't triggerable, you'll have to instead use scheduled apex to periodically sweep the database for updates and perform your business logic. Objects without a trigger menu option but are documented as triggerable can have triggers created through Eclipse or the Metadata Toolkit.
Yoganand GadekarYoganand Gadekar

Try using this method:

 

1.Go to account trigger, click on new trigger

2.Once the new trigger window opens, just chnge the current URL in the brwoser, you have just change the parameter entity.. for account it will be &Entity=Account, just change it to the object you want and hit enter... if salesforce allows then it will open the trigger window else give the message...

 

Hit kudos and mark as answer if it helps you.