You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, when creating a new trigger workflow, the developer has to do the following.
Create the workflow class
Edit the appropriate trigger
Create the custom metadata record
However, since the Type class supports a Type.forName(String) method which can be used to dynamically construct a Type object which can then be used to get an instance of that type, it would be great if the developer can simply do the following.
Create the workflow class
Create the custom metadata record
The trigger should simply need to be created once, with custom metadata determining whether a workflow is executed and in what order.
The text was updated successfully, but these errors were encountered:
As part of #11 it was trivial to add an additional ORDER BY clause to the query used to return active workflows for a given object. If the change passes deployment and testing in a sandbox, this issue will also be resolved as a byproduct.
Right now, when creating a new trigger workflow, the developer has to do the following.
However, since the Type class supports a
Type.forName(String)
method which can be used to dynamically construct aType
object which can then be used to get an instance of that type, it would be great if the developer can simply do the following.The trigger should simply need to be created once, with custom metadata determining whether a workflow is executed and in what order.
The text was updated successfully, but these errors were encountered: