RemoveNotification
You can use this function for Optiva workflows.
Purpose
When RemoveNotification
is called from any
action, it will remove the identified notification from the field identified.
Note: There are optional parameters for
symbol, object and
detailCode
. rowKey
is reserved for future use. Syntax
Public Function RemoveNotification(propertyName As String, Optional objSymbol As String = “”, Optional objectKey As String = “”, Optional detailCode as String = “”, Optional rowkey As String = “”) as Long
Arguments
Argument | Description |
---|---|
propertyName |
Holds the property name or field name |
Optional objSymbol |
The data object type or the current object type if blank. |
Optional objectKey |
The data object key or the current object key if blank. |
detailCode |
The system detail code that is used to return the new row. |
Optional rowKey |
This is reserved for future use. |
Remove Test Example
The following line of code will remove this specific Notification from the current object.
RemoveNotification("DESCRIPTION")
Return 111