这可能是 necro-threading,但我工作的时候也遇到过类似的情况。我们需要 SAP GUI Automation 来进行测试,以便与我们用 C# 编写的其他本土自动化平台集成。我帮助创建了一个解决方案的提案,该解决方案利用了 SAP 提供的 GUI 自动化库,可用作 SAP 自动化层的基础。
您的 SAP 文件安装中是否存在以下文件?x:\Program Files\SAP\FrontEnd\SAPGui\sapfewse.ocx?
如果是这样,请将其添加到 Visual Studio(或您正在使用的任何 IDE)作为参考。它基本上是一个类库,其中包含一组允许您与之交互的 SAP 特定对象。它非常有效,因为它从 SAP GUI 中公开了您需要的大部分内容。我们在其他尝试中发现 SAP 中的许多对象不可用。
这是我所做的早期概念证明。使用连接字符串启动 SAP,输入凭据,导航到事务代码。
using System;
using System.Collections.Generic;
using System.Collections;
using System.Linq;
using System.Text;
using SAPFEWSELib;
namespace SAPGuiAutomated
{
//created a class for the SAP app, connection, and session objects as well as for common methods.
public class SAPActive
{
public static GuiApplication SapGuiApp { get; set; }
public static GuiConnection SapConnection { get; set; }
public static GuiSession SapSession { get; set; }
public static void openSap(string env)
{
SAPActive.SapGuiApp = new GuiApplication();
string connectString = null;
if (env.ToUpper().Equals("DEFAULT"))
{
connectString = "1.0 Test ERP (DEFAULT)";
}
else
{
connectString = env;
}
SAPActive.SapConnection = SAPActive.SapGuiApp.OpenConnection(connectString, Sync: true); //creates connection
SAPActive.SapSession = (GuiSession)SAPActive.SapConnection.Sessions.Item(0); //creates the Gui session off the connection you made
}
public void login(string myclient, string mylogin, string mypass, string mylang)
{
GuiTextField client = (GuiTextField)SAPActive.SapSession.ActiveWindow.FindByName("RSYST-MANDT", "GuiTextField");
GuiTextField login = (GuiTextField)SAPActive.SapSession.ActiveWindow.FindByName("RSYST-BNAME", "GuiTextField");
GuiTextField pass = (GuiTextField)SAPActive.SapSession.ActiveWindow.FindByName("RSYST-BCODE", "GuiPasswordField");
GuiTextField language = (GuiTextField)SAPActive.SapSession.ActiveWindow.FindByName("RSYST-LANGU", "GuiTextField");
client.SetFocus();
client.text = myclient;
login.SetFocus();
login.Text = mylogin;
pass.SetFocus();
pass.Text = mypass;
language.SetFocus();
language.Text = mylang;
//Press the green checkmark button which is about the same as the enter key
GuiButton btn = (GuiButton)SapSession.FindById("/app/con[0]/ses[0]/wnd[0]/tbar[0]/btn[0]");
btn.SetFocus();
btn.Press();
}
}
//--------------------------//
//main method somewhere else
public static void Main(string[] args)
{
SAPActive.openSAP("my connection string");
SAPActive.login("10", "jdoe", "password", "EN");
SAPActive.SapSession.StartTransaction("VA03");
}
你是对的,关于这个主题的文档并不多。以下是一些帮助我入门的资源
-我们计划的原始来源
http://scn.sap.com/thread/1729689
- API 文档(适用于 VB 和 javascript,但一般规则和对象是相同的)。一定要阅读 SAP GUI 运行时层次结构上的部分。它会回答很多问题。
http://www.synactive.com/download/sap%20gui%20scripting/sap%20gui%20scripting%20api.pdf