gpt4 book ai didi

vba - 使用 Excel 宏从 SAP 中提取数据

转载 作者:行者123 更新时间:2023-12-04 20:16:19 26 4
gpt4 key购买 nike

所以我正在尝试使用 excel 宏从 SAP 中提取数据。我是 VBA 新手,所以请多多包涵。我在这里找到了一个名为 VBA 从 SAP 为傻瓜提取数据的主题,我很困惑。
我想做的是如下:

  • 从 Excel 列表中复制通知编号。
  • 转到 SAP 中的相应屏幕并将此编号粘贴到搜索框中。
  • 打开长文本框。
  • 复制长文本。
  • 粘贴到excel中。

  • 这是链接 VBA pulling data from SAP for dummies

    我似乎无法通过 Set session = connection.Children(0) '获取该连接上的第一个 session (窗口)。

    任何帮助深表感谢。我这样做的原因是因为 SAP 不会导出 longtext,它需要上帝的作为才能修复它。

    最佳答案

    这是我用于 SAP 的所有连接的内容:

    'Connect to SAP to run automation.
    If Not IsObject(SAP_applic) Then
    Set SapGuiAuto = GetObject("SAPGUI")
    Set SAP_applic = SapGuiAuto.GetScriptingEngine
    End If
    Set connection = SAP_applic.Children(0)
    If Not IsObject(connection) Then
    Set connection = application.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 application, "on"
    End If

    关于vba - 使用 Excel 宏从 SAP 中提取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24297063/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com