14-02-20 07:36 PM
14-02-20 08:08 PM
16-02-20 07:15 PM
16-02-20 08:01 PM
16-02-20 08:06 PM
17-02-20 09:15 AM
Dim SapGuiAuto As Object
Dim session As Object
Dim Application As Object
Dim Connection As Object
SapGuiAuto = GetObject("SAPGUI")
Application = SapGuiAuto.GetScriptingEngine
Connection = Application.Children(0)
session = Connection.Children(cInt(N_In_Session_Number))
session.findById(T_In_ID).select
Attached is the screen with DLLs for this object
Best regards,
Michal Szumski
17-02-20 02:09 PM
17-02-20 02:23 PM
session.findById("wnd[0]/mbar/menu[2]/menu[6]").select
it means that It will select second menu category and then he will select 6th subcategory.
18-02-20 08:03 AM