我試圖在運行vbscript時檢索到事件參考號。該腳本打開與代碼中的腳本票值的車票,但它返回以下錯誤:錯誤:必需的對象:「oWSResponseDoc.selectSingleNode(...)」當我運行vbscript時沒有收到事件參考號
我使用的代碼是
' Perform the insert and check the status
If Not wsInsertIncident.Post Then
WScript.Echo "Error=" & wsInsertIncident.Status
WScript.Echo wsInsertIncident.StatusText
WScript.Quit
End If
Dim strIncidentSysId, strIncidentNumber
strIncidentSysId = wsInsertIncident.GetValue("sys_id")
strIncidentNumber = wsInsertIncident.GetValue("number")
WScript.Echo "Inserted: " & strIncidentNumber
我知道這在過去的工作,但今天它沒有。我不知道發生了什麼變化。完整的腳本可以在這裏看到:
https://servicenowsoap.wordpress.com/2013/10/26/vb-script/
你能幫幫我嗎?非常感謝!
有沒有你正試圖解決的特定情況?避免vbscript可能會更好。 – Kirk
我試圖解決的具體情況實際上就是這一個,cap kirk!我喜歡很多vbscript。 – Malbordio