Action Invoker Callback Class
Action Invoker Callback provides you a mechanism to implement custom navigation for custom actions. You can define logic for a custom page to redirect the Sales rep to.
To use the Action Invoker Callback you must create a custom Apex class that implements the Apttus_Config2.CustomClass.IActionInvokerCallback interface and register the custom apex class with Action Invoker Callback Class. You must write your custom logic in the custom apex class.
The following methods are available in the Apttus_Config2.CustomClass.IActionInvokerCallback interface.
Method | Signature | Description |
---|---|---|
invokeAction | System.PageReference invokeAction(Apttus_Config2.ProductConfiguration, Apttus_Config2.CustomClass.ActionParams) | You can use this method to execute the custom navigation upon the Sales rep's click of the custom action. |
Example