使用"SAPFEWSELib"的C# SAP自动化,可以通过以下步骤从下拉列表中按下按钮:
using SAPFEWSELib;
GuiApplication sapGuiApp = new GuiApplication();
sapGuiApp.Connect();
GuiConnection connection = sapGuiApp.Children.ElementAt(0) as GuiConnection;
connection.Children.ElementAt(0).Select();
GuiSession session = connection.Children.ElementAt(0) as GuiSession;
session.StartTransaction("T-Code");
GuiFrameWindow frame = session.FindById<GuiFrameWindow>("ID");
GuiComboBox comboBox = frame.FindById<GuiComboBox>("ID");
comboBox.Key = "Option";
其中,"ID"是下拉列表的ID,"Option"是要选择的选项。
GuiButton button = frame.FindById<GuiButton>("ID");
button.Press();
其中,"ID"是按钮的ID。
通过以上步骤,可以使用"SAPFEWSELib"的C# SAP自动化从下拉列表中按下按钮。请注意,具体的ID和选项名称需要根据实际情况进行替换。
领取专属 10元无门槛券
手把手带您无忧上云