I am working on connecting to the SAP GUI via VBA, but can't figure out how to get the connection established within its own function. This is assuming you have already logged into the SAP GUI. I am receiving the "Object variable or With block variable not set" error.
Here is an example of what works...
Sub runProgram()
'Connet to SAP."sapguiapp", used to be named "Application" which is an excel keyword
If Not IsObject(sapguiapp) Then
Set SapGuiAuto = GetObject("SAPGUI")
Set sapguiapp = SapGuiAuto.GetScriptingEngine
End If
If Not IsObject(Connection) Then
Set Connection = sapguiapp.Children(0)
End If
If Not IsObject(session) Then
Set session = Connection.Children(0)
End If
If IsObject(WScript) Then
WScript.ConnectObject session, "on"
WScript.ConnectObject sapguiapp, "on"
End If
'Maximize the SAP window
session.findById("wnd[0]").maximize
' Do a whole bunch of other SAP work, now that we're connected
'....
End Sub
However, I want to split the connection section into its own sub/function to separate it from the actual work. I thought that I could simply create a new function and return 'session' as an object.
This doesn't work:
Sub runProgram()
'Call the function that connects to SAP
Dim session As Object
Set session = ConnectToSAP
'Maximize the SAP window
session.findById("wnd[0]").maximize
' Do a whole bunch of other SAP work, now that we're connected (JK, we're not...)
'....
End Sub
Function ConnectToSAP() As Object
'Connet to SAP."sapguiapp", used to be named "Application" which is an excel keyword
If Not IsObject(sapguiapp) Then
Set SapGuiAuto = GetObject("SAPGUI")
Set sapguiapp = SapGuiAuto.GetScriptingEngine
End If
If Not IsObject(Connection) Then
Set Connection = sapguiapp.Children(0)
End If
If Not IsObject(session) Then
Set session = Connection.Children(0)
End If
If IsObject(WScript) Then
WScript.ConnectObject session, "on"
WScript.ConnectObject sapguiapp, "on"
End If
End Function
Is there something painfully obvious that I'm missing? I have a few subs that connect to SAP so I'd like to split out the actual connection code. Any tips would be greatly appreciated!
Edit: Note that I didn't copy/paste this from my actual program, so if there is a a small typo I apologize. Please comment letting me know where I screwed up :)
In the
ConnectToSAP
function you are missing the assignment statementSet ConnectToSAP = session
at the end.