Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
任何人都可以指导我获取任何有用的文档以获取 C# 中的 SAP 录制脚本吗?
根据我的发现,我们需要连接到 SAP,我可以通过 C# 建立。
不是试图重新发明轮子,而是有一个复杂的要求,需要 C# 中的脚本文本。
输出与Tracker一样
只需要脚本文本/字符串。仅此而已。
任何帮助将不胜感激。
知道了。这很容易。只需四步。
1 - 分配录音文件名。[仅命名不需要路径但需要扩展名]
_session.RecordFile = @"SampleScript.vbs";
2 - 开始录制
_session.Record = true;
3 - 获取录制文件的路径以进一步使用或查看文件。
var scriptPath = _session.RecordFile;
4 - 停止录制。
_session.Record = false;
这就是使用 C# 录制 SAP 脚本所需的全部内容。