|
|
|
|
HNotifListCCRecipient (Function) In french: HNotifListeDestinataireCC
Available only with this kind of connection
Returns the list of recipients for a notification sent via the Control Centers (WDBal messaging tool). This notification is sent by the HFSQL server when a problem occurs.
ctCSConnection is Connection ctCSConnection.Provider = hAccessHFClientServer ctCSConnection.User = "admin" ctCSConnection.Password = "" ctCSConnection.Server = "test:4900" HOpenConnection(ctCSConnection) ListEmailRecip is string ListEmailRecip = HNotifListCCRecipient(ctCSConnection) FOR EACH STRING ARecipient OF ListEmailRecip SEPARATED BY CR sRecipient is string = ExtractString(ARecipient, 1, TAB) Notif is int = ExtractString(ARecipient, 2, TAB) NotifLevel is string SWITCH Notif CASE hNotifError: NotifLevel = "Minimum level: Errors" CASE hNotifWarning: NotifLevel = "Minimum level: Warning" CASE hNotifCritical: NotifLevel = "Minimum level: Critical" END Trace(sRecipient + TAB + NotifLevel) END
Syntax
<Result> = HNotifListCCRecipient(<Connection>)
<Result>: Character string List of notification recipients via the Control Centers. The list has the following format:
<Recipient Name> + TAB + <Notification Level> + CR + ... where: - <Recipient Name>: character string corresponding to the name of the notification recipient.
- <Notification Level>: integer constant corresponding the the minimum severity level of the problem from which a notification is sent. The available values are as follows:
| | hNotifCritical | The notifications will be sent from the critical level (for the critical and error problems). | hNotifError | The notifications will be sent for the error problems only. | hNotifWarning | The notifications will be sent from the warning level (for the warning, critical and error problems). |
<Connection>: Character string or Connection variable Connection to use. This connection corresponds to:
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|