Alexlyblue Posted November 30, 2012 Share Posted November 30, 2012 Dear All:I've already read many posts about SAP and AutoIT v3, even this SAP UDF, Automating SAP using SAP's GUI Scripting COM object .But my question is I have no right to use SAP GUI Script, so I can't use sean's Library.Might I ask how to get enough Information of SAP-GUI controls without SAP GUI Script?Many thanksAber Link to comment Share on other sites More sharing options...
water Posted November 30, 2012 Share Posted November 30, 2012 I had to automate the SAP GUI myself - until the problem was solved by exporting the data to a text file yb the SAP Guys. After doing some research I came to the conclusion that the SAP UDF you mentioned above is the only proper way to automate SAP. If your company wants you to do the job by automating SAP they have to provide the tools you need (enable SAP scripting etc.) My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki Link to comment Share on other sites More sharing options...
StSchnell Posted January 5, 2013 Share Posted January 5, 2013 Hello Aber and Water, there are a few ways to communicate with an SAP system. SAP GUI Scripting is only one to automate your user input. My suggestion is the same as Waters: Talk with your admin to enable SAP GUI Scripting on the application server you need. With the TAC RZ11 he must set the value from the parameter sapgui/user_scripting to TRUE. And activate the option Scripting in your local SAP GUI Logon. If it is also not possible, talk with your admin too. There is no way around this security options. You can use SAP GUI without enabled SAP GUI Scripting, you find a few (older) examples in my knowledge collection - Tips for AutoIt. But it is not comfortable and if there are some changes in the UI, it could be problematically. With AutoIt you can also use the SAP GUI ActiveX components or the SAP NetWeaver RFC SDK, if you know the RFC function modules or BAPI interfaces. Cheers Stefan Meet me at XING Visit my private homepage Visit my commercial homepage Look at my book inter alia about AutoIt and SAP Link to comment Share on other sites More sharing options...
marciovieira Posted March 26, 2013 Share Posted March 26, 2013 Hello, Stefan I wonder if it is possible to manipulate the field values of a transaction through the AutoIt, it would be asking too much if you post an example? Or some site that teaches how to do. Note: Through GuiXT could see that the field names and their values appear on the screen, this is what I ask above. Thankful. Márcio. I am Brazilian, I live and work in Brazil. Excuse me if there are errors, I'm using Google Translator. Link to comment Share on other sites More sharing options...
water Posted March 26, 2013 Share Posted March 26, 2013 Use AutoIt's Window Info Tool to check if SAP uses Controls that can be accessed by AutoIt. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki Link to comment Share on other sites More sharing options...
StSchnell Posted May 3, 2013 Share Posted May 3, 2013 Hello Márcio,sorry for my late answer.With SAP GUI Scripting you can automatically manipulate nearly all objects of SAP GUI for Windows, also field values.Here an example how to use the ok-field:;-Begin----------------------------------------------------------------- ;-Variables----------------------------------------------------------- Dim $SAPROT, $SapGuiAuto, $application, $connection, $session $SAPROT = ObjCreate("SapROTWr.SAPROTWrapper") If Not IsObj($SAPROT) Then Exit EndIf $SapGuiAuto = $SAPROT.GetROTEntry("SAPGUI") If Not IsObj($SapGuiAuto) Then Exit EndIf $application = $SapGuiAuto.GetScriptingEngine() If Not IsObj($application) Then Exit EndIf $connection = $application.Children(0) If Not IsObj($connection) Then Exit EndIf $session = $connection.Children(0) If Not IsObj($session) Then Exit EndIf $session.findById("wnd[0]/tbar[0]/okcd").text = "/nse16" $session.findById("wnd[0]").sendVKey(0) ;-End-------------------------------------------------------------------To analyze SAP GUI and to find out the IDs and names of the objects look here http://scn.sap.com/docs/DOC-32728 and here http://scn.sap.com/docs/DOC-40265 > cool AutoIt analyzer.Hope it helps a little bit.CheersStefan Meet me at XING Visit my private homepage Visit my commercial homepage Look at my book inter alia about AutoIt and SAP Link to comment Share on other sites More sharing options...
django1 Posted April 13, 2015 Share Posted April 13, 2015 Hi all, When I use the following script ;-Begin----------------------------------------------------------------- ;-Variables----------------------------------------------------------- Dim $SAPROT, $SapGuiAuto, $application, $connection, $session If Not IsObj($SAPROT) Then $SAPROT = ObjCreate("SapROTWr.SAPROTWrapper") EndIf If Not IsObj($SapGuiAuto) Then $SapGuiAuto = $SAPROT.GetROTEntry("SAPGUI") EndIf If Not IsObj($application) Then $application = $SapGuiAuto.GetScriptingEngine() EndIf If Not IsObj($connection) Then $connection = $application.OpenConnection("XXXXXXXXX") EndIf ; $session = $connection.Children(0) ; If Not IsObj($session) Then ; Exit ; EndIf $session.findById("wnd[0]/tbar[0]/okcd").text = "/nse16" $session.findById("wnd[0]").sendVKey(0) ;-End------------------------------------------------------------------- ------ Error Msg ---------- "C:\Program Files (x86)\AutoIt3\Include\SAP_GenFunc.au3" (56) : ==> Variable must be of type "Object".: $connection = $application.OpenConnection("xxxxxxxx") $connection = $application^ ERROR Can somebody help me, please. Thanks Link to comment Share on other sites More sharing options...
django1 Posted April 15, 2015 Share Posted April 15, 2015 Hello everyone I got the resolution. All I did is launch the SAP Logon pad as "Run as Administrator". I tried on Windows 8 (Laptop). Here is the code Local $sapapp, $sap_connection, $sap_session Local $sap_connection_url = "XX_XXX_XXXX" If Not IsObj($sapapp) Then $sapgui = ObjGet("SAPGUI") $sapapp = $sapgui.GetScriptingEngine EndIf If Not IsObj($sap_connection) Then $sap_connection = $sapapp.Openconnection($sap_connection_url, True) EndIf If Not IsObj($sap_session) Then $sap_session = $sap_connection.Children(0) EndIf Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now