HOOK_aes_acknowledgeTableFunction()
The system executes the function when you acknowledge an alert in the alert screen. Implement the function in a CONTROL library.
Synopsis
bool HOOK_aes_acknowledgeTableFunction( string sObjectName, int iType,
mapping mTableMultipleRows);
Parameters
Parameters | Meaning |
---|---|
sObjectName | Name of the object. |
iType |
Type 0 = only column DPE Type 1 = all columns of the given rows (mTableMultipleRows) |
mTableMultipleRows | Mapping of specific table rows on the content of their columns. |
Return value
With the return value (true / false) you can control if the acknowledgement handling should continue (return true) or not (return false).
Description
The system calls the hook function when you acknowledge an alert in the alert screen. Implement the function in a CONTROL library. Load this CONTROL library in the user interface. Use, for example, the LoadCtrlLibs entry in the config.level file to load the CONTROL library.
Example
If you acknowledge an alert and the acknowledgement was successful, the log viewer shows the Debug information.
bool HOOK_aes_acknowledgeTableFunction(string sObjectName, int iType, mapping mTableMultipleRows)
{
DebugN("Hook function HOOK_aes_acknowledgeTableFunction called");
return true;
}
Assignment
Availability
CTRL