Here is an alternative:
Command on the Task Manager C:\Windows\SysWOW64\wscript.exe C:\VBScripts\dba_reorder.vbs
VBScript ' =============
' CODE START HERE
' =============
Dim Connection
Dim Recordset
Dim var_sql
Dim Response
Dim the_sku
Dim the_DSN
'Variables
the_DSN = "DSN=MYODBC_CONNECTION"
the_sku = "MY_PART_ID"
Set Connection = CreateObject("ADODB.Connection")
Set Recordset = CreateObject("ADODB.Recordset")
Connection.Open the_DSN
var_sql = "SELECT BKIC_PROD_UOH FROM BKICMSTR WHERE BKIC_PROD_CODE = '" & the_sku & "' AND BKIC_PROD_RLVL > BKIC_PROD_UOH;"
Recordset.Open var_sql,Connection
If Recordset.EOF Then
'Do nothing No records criteria not met
Else
Do While NOT Recordset.Eof
var_sql = "Item : " & the_sku & " units on hand below Re-order Level. UOH : " & Recordset("BKIC_PROD_UOH")
Response = msgbox(var_sql, VBCritical, " DBA/EVO")
Recordset.MoveNext
Loop
End If
Recordset.Close
Set Recordset=nothing
Connection.Close
Set Connection=nothing
' ============
' DONE END
' ============
Change the SKU and your EVO/DBA Connection
You have a trigger !!! Have fun....
Kelloggs