Display Action Callback Class
- Abandon
- Approvals
- Generate
- Quick Save
To use the Display Action Callback you must create a custom Apex class that implements the Apttus_Config2.CustomClass.IDisplayActionCallback interface and register the custom apex class with Display Action Callback Class. You must write your custom logic in the custom apex class.
The following methods are available in the Apttus_Config2.CustomClass.IDisplayActionCallback interface:
Method | Signature | Description |
---|---|---|
setActionProperties() | void setActionProperties(Apttus_Config2.CustomClass.ActionParams) | You can use this method to enable or disable an action button. |
start() | void start(Apttus_Config2.ProductConfiguration, List) | This is the first method that is executed when the callback is invoked. |
Example