ScriptContext.Alert Property

Gets the Alert object that caused MOM to invoke the script.

 ScriptContext.Alert

Access

Read/Write

Return Value

Object

Examples

The following example shows how to access the Alert object that caused MOM to invoke the script.

Function CreateNewAlert()
    Dim objCreatedAlert
    Dim objAlert

    Set objCreatedAlert = ScriptContext.CreateAlert()

    If (ScriptContext.IsAlert()) Then
        Set objAlert = ScriptContext.Alert

        objCreatedAlert.Name = objAlert.Name
        objCreatedAlert.AlertLevel = 50
        objCreatedAlert.Owner = "[unassigned]"
        objCreatedAlert.ResolutionState = 0  ' New
    Else
        Set objCreatedAlert = Nothing
    End If

    Set objAlert = Nothing

    Set CreateNewAlert = objCreatedAlert
End Function

Requirements

Platforms: Requires Windows 2000 or later

Version: Requires MOM 2000  or later

See Also

ScriptContext Object | Alert Object