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
Amit889Amit889 

Workarounds of EE for PE

Hi

I want to try to send email when a field is updated on PE. Is workflow rules and triggers are not available on PE, can we try to accomplish this functionality using Apex/Javascript?


Generaly speaking, what are some things we can use Javascript in PE for to mimic functionalities that are only available on the Enterprise edition?

Thanks. 
Vinit_KumarVinit_Kumar
I am afraid you can't use Apex in PE.The only JS which you can use in PE is which doesn't call any controller action method as you can't write Apex Class in PE.

Any JS which is only using page components is available in PE.

If this helps,please mark it as best answer to help others :)
Amit889Amit889
How can we send an email in PE on a field update? Is this just not possible?
Vinit_KumarVinit_Kumar
Wirkflows are also not available in PE.

The only workaround I can think of is to create a package in Developer edition to send Email and install that package in your PE org.

If this helps,please mark it as best answer to help others :)