[SalesForce] How to create new apex class and trigger in salesforce professional edition

I have enabled apex in salesforce professional edition but there is no option to create new apex class or trigger.

How can I create this in salesforce professional edition?

Best Answer

https://developer.salesforce.com/docs/atlas.en-us.packagingGuide.meta/packagingGuide/dev_packages_apex_ge_pe.htm

You cannot author apex. You can only run apex code that is part of a managed package.

Basically you cannot creat apex in the PE org

Enabling apex allows managed packages to run their apex code in your org

You could created a DE org and do your code there, then package it up and deploy it in you PE org

Related Topic