Hallo ChrisGur,
ich habe dein Thema heute erst gesehen, falls du noch keine Lösung hast, hier die Anmeldung an SAP wie ich sie verwende:
'SAP Connenction
Set Conn = Nothing
'Preparation for connect
Set Conn = CreateObject("SAP.Functions")
'Connection with LogonPad
If Conn.Connection.LogOn(0, False) <> True Then
Exit Sub
End If
'Connection without LogonPad
' Conn.Connection.System = "Entwicklungs-System"
' Conn.Connection.ApplicationServer = "XXXXXX" 'DNS IP
' Conn.Connection.SystemNumber = "0" 'Instanz
' Conn.Connection.Client = "080" ' Mandant
' Conn.Connection.User = "XXX" 'User
' Conn.Connection.Password = "XXXXXXX" 'Password
' Conn.Connection.Language = "DE" 'Sprache
Hoffe das hilft dir weiter
Robben