处理SAP GUI脚本代码中的错误

您可以从GUI脚本帮助部分获得参考,它可以详细解释事情。

它根据需要为您提供默认属性类型。如果要执行下一步,停止或中止用户步骤,则可以使用以下属性。


描述
小号成功
w ^警告
Ë错误
一种 中止
 一世  信息


请参阅以下使用上述属性类型的代码以显示不同的消息-

Public Sub get_status_bar_value_exit_if_Error()
   Dim usr_resp AsString
   If(session.findById("wnd[0]/sbar").messagetype = "E"Or
      session.findById("wnd[0]/sbar").messagetype= "W") Then
   usr_resp =MsgBox(session.findById("wnd[0]/sbar").Text & Chr(13) &"Show the Error in SAP ?",
vbYesNo)
    If usr_resp =vbYes Then
 Else
    Callgo_to_Sap_home
 End If
 End
 End If
End Sub