我的机器上没有直接安装 SAP,并通过下面的链接使用 SAP 窗口。
https://nedc-ctx.applications.services.axa-tech.intraxa/Citrix/AccessPlatform/auth/loggedout.aspx
我知道 SAP GUI 的 Record and Run 功能并且正在工作。我仅在培训版本中具有此访问权限。在生产中,我无法使用运行和记录选项。
如何从 Excel VBA 打开 SAP 窗口、连接和加载数据?
在下面的代码中,我得到一个错误。
我发现我无法在我的机器上添加参考文件“sapfewse.ocx”。
如果我们通过上面提供的链接访问 SAP,是否可以通过 Excel VBA 连接 SAP。单击上面的链接后,新的弹出窗口将与 SAP with window 连接。SAP 正在通过 Citrix 进行连接。
代码(取自此帮助链接):
Set SapGuiAuto = GetObject("SAPGUI") 'Get the SAP GUI Scripting object
Set SAPApp = SapGuiAuto.GetScriptingEngine 'Get the currently running SAP GUI
Set SAPCon = SAPApp.Children(0) 'Get the first system that is currently connected
Set session = SAPCon.Children(0) 'Get the first session (window) on that connection
'Start the transaction to view a table
session.StartTransaction "SE16"