Skip to Content
0
Former Member
Jan 13, 2017 at 05:55 PM

How to login SAP without single signon through vb.net

832 Views Last edit Jan 13, 2017 at 11:55 PM 2 rev

How to login SAP without single signon through vb.net, i have used below code but got below err msg can you able to help on this.

Error message:

An unhandled exception of type 'System.Exception' occurred in Microsoft.VisualBasic.dll

Additional information: Cannot create ActiveX component.

Code used:

Dim application AsObject

Dim SapGui AsObject

Dim connection AsObject

Dim session AsObject

application = CreateObject("SAPGUI.ScriptingCtrl.1")

SapGui = GetObject("SAPGUI")

application = SapGui.GetScriptingEngine

connection = application.OpenConnection("**", True)

session = connection.children(0)

session.findById("wnd[0]/usr/txtRSYST-BNAME").text = "**"

session.findById("wnd[0]/usr/pwdRSYST-BCODE").text = "**"

session.findById("wnd[0]").sendVKey(0)