Hi everyone!
Could anyone tell me in this script which one could be an invalid character? I keep getting the compiler error for an invalid character, it's a SAP GUI Script
Success = True
If session.Info.Transaction <> "SESSION_MANAGER" Or session.ActiveWindow.Name = "wnd[1]" Then
'Check Change Password Popup
If Not session.findById("wnd[1]/usr/lblRSYST-NCODE_TEXT", False) Is Nothing Then
Message = "Cant login need to update credentials for user"
Success = False
session.findById("wnd[0]/tbar[0]/okcd").text = "ok"
Exit Sub
End If
End If
Thanks in advance!