Jump to content

Recommended Posts

  • 3 months later...
Posted

Hi. 

Anyone know how to get text from the sidebar?

Image as attached.

session.findById("wnd[0]").maximize
session.findById("wnd[0]/sbar").doubleClick
session.findById("wnd[0]/shellcont").close

It can't be copied directly. Usually I will double click it and copy the status from the window.

Thanks!

post-87073-0-29267100-1408431460_thumb.p

  • 7 months later...
Posted

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

  • 8 months later...
Posted
  On 5/6/2013 at 4:46 PM, CaoD said:

Hey there, after some research and some free programming courses from MIT on the web... I managed to better understand the SAP UDF Function and how to amend it to serve my needs.

 

I was basically just in need to be able to select a "Tab" in SAP (see a few posts above). The solution was actually pretty simple... I just had to change a few characters while adding one more "Case" in the _SAPObjSelect

 

Basically, I just added the following :

 

 

; Tab
Case StringInStr($object_id, "/tab") > 0

$sap_session.findById("wnd[" & $sap_window_num & "]/" & $object_id).select

 

Saved this into a SAP2.Au3 that I called in as an Include (removing the original SAP.Au3) and now I'm able to move from Tab to Tab without getting any annoying error messages...

 

Not sure if it's worth updating the whole UDF.... yet. Maybe in the same manner I added the GuiTab selection there are other objects that could be added...

Thanks a lot. This worked for me.

  • 3 months later...
Posted

I think it should work as long as SAP GUI Scripting interface is enabled.

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted (edited)

follow these manual steps in SAP:

 

  • Select the "Customize Local Layout" button on the toolbar.
  • Select "Script Development Tools".
  • Select "Do a hit test on the window".
  • Move your mouse to the object you want the ID of.
  • Click "Copy Id" in the Scripting Wizard.
  • Paste this ID into the function in your script.
  • Remove all text upto and including "wnd[n]/".

 

HI in the above steps

after selecting "Customize Local Layout" button on the toolbar.

Script Development Tools option is not present(I am using SAP730)

Edited by prudviRaju
  • 9 months later...
Posted

Hi,

it does not seem to work anymore on SAP740...

_SAPSessAttach("SAP Easy Access") 

returns this:

>Running:(3.3.14.2):C:\Program Files (x86)\AutoIt3\autoit3.exe "C:\Cancellabili\SAP Test\_SAPSessAttach.au3"    
--> Press Ctrl+Alt+Break to Restart or Ctrl+Break to Stop
Unable to find the window with title "SAP Easy Access" to attach to.
"C:\Cancellabili\SAP Test\SAP.au3" (446) : ==> Variable must be of type "Object".:
$sap_session.findById("wnd[" & $sap_window_num & "]/" & $object_id).text = $object_value
$sap_session^ ERROR
->14:58:30 AutoIt3.exe ended.rc:1

Of course, the SaAP Easy Access window is open..

 

Any hint?

Posted

Maybe the window title has changed?

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted

Run Winlist to check the names of the existing windows. 

My UDFs and Tutorials:

  Reveal hidden contents

 

  • 4 weeks later...
  • 2 months later...
Posted (edited)
  On 4/4/2016 at 2:18 PM, prudviRaju said:

status bar.PNG

 

Anyone know how to get text from the sbar its id is : session.findById("wnd[0]/sbar").doubleClick

Expand  

Since this thread shows up first on Google I thought I'd share this bit of info here.

Func _SAP_ReadStatus()
    ConsoleWrite("[SAP Automation] - Reading Status" & @CRLF)
    $SAP_Status = $sap_session.findById("wnd[0]/sbar").text
    ConsoleWrite("[SAP Automation] - Status: " & $SAP_Status & @CRLF)
    Return $SAP_Status
EndFunc   ;==>_SAP_ReadStatus

Tweak as necessary.

 

Regarding the script failing to attach to the  SAP Easy Access screen, I've also been having intermittent issues with connecting to SAP now. The same exact script works just fine on one computer but fails completely on another computer with an identical environment. I've even had one computer that used to be able to run SAP scripts then suddenly stops working. Same SAP client and all. Can anyone guess what's going on here?

Edited by DJKMan

 

 

Posted

Hi, i was trying to make an automation in SAP with AutoIt , Sean Griffin library's version 0.3, but it seems that even though the "Scripting is installed!" message is displayed the robot can not access to SAP.  

Also, the "Script Recording and Playback" option in SAP is disabled. 

Anyone any idea how to solve this?

I'm trying to contact the system administrators in the meantime.

 

Thnks in advance.

  • 8 months later...
Posted

Hello, 

at first great thing  Sean Griffin! 

I hope it´s ok that i added a new function and expand 2 function.

New function:

_SAPgetGrid()

  Reveal hidden contents

Expand functions:

_SAPObjDeselect() ;--- now with GuiList

  Reveal hidden contents

_SAPObjselect() ;--- now with GuiList

  Reveal hidden contents

 

  • 2 months later...
Posted (edited)

Hi to all, our company has moved to SAP and I must (!) automate the most repetitive operation.

So I noticed this UDF and start make experiments.

Facts: I have SAP 7.40 and the UDF, in the last version 0.4, is working, sort of.

By now I accomplished to do have this code working:

#include <SAP.au3>
_SAPSessAttach("SAP Easy Access")
_SAPObjValueSet("tbar[0]/okcd", "vf03")
sleep(250)
_SAPVKeysSend("Enter")
sleep(500)
_SAPObjValueSet("usr/ctxtVBRK-VBELN", "4550103097")
sleep(250)
_SAPVKeysSend("Enter")
sleep(500)

with the last two lines I am able to insert an invoice number in a field, and with "enter" I move to another screen.

Now I am stuck in the screenshot attached, if you can see I want to press the button as by red arrow.

But I tried with _sapobjselect with no luck, I think my problem is to figure the real name of the button.

With the SAP script recorder I have this:

If Not IsObject(application) Then
   Set SapGuiAuto  = GetObject("SAPGUI")
   Set application = SapGuiAuto.GetScriptingEngine
End If
If Not IsObject(connection) Then
   Set connection = application.Children(0)
End If
If Not IsObject(session) Then
   Set session    = connection.Children(0)
End If
If IsObject(WScript) Then
   WScript.ConnectObject session,     "on"
   WScript.ConnectObject application, "on"
End If
session.findById("wnd[0]").maximize
session.findById("wnd[0]/tbar[0]/okcd").text = "vf03"
session.findById("wnd[0]").sendVKey 0
session.findById("wnd[0]/usr/ctxtVBRK-VBELN").text = "4550004107"
session.findById("wnd[0]/usr/ctxtVBRK-VBELN").caretPosition = 10
session.findById("wnd[0]").sendVKey 0
session.findById("wnd[0]/titl/shellcont/shell").pressButton "%GOS_TOOLBOX"
session.findById("wnd[0]/shellcont/shell").pressButton "VIEW_ATTA"
session.findById("wnd[1]/usr/cntlCONTAINER_0100/shellcont/shell").currentCellColumn = "BITM_DESCR"
session.findById("wnd[1]/usr/cntlCONTAINER_0100/shellcont/shell").selectedRows = "0"
session.findById("wnd[1]/usr/cntlCONTAINER_0100/shellcont/shell").doubleClickCurrentCell

And  I am unable to replicate the press button (but.. is that a "button " ?) steps (the first in the image is the "%GOS_TOOLBOX"

to be clear, mouse-pressing  that button opens a small toolbar and on that there is the sub-button "VIEW_ATTA"

Any ideas ?

sap1.JPG

 

PS I found this tool working

But It doesn't help for now, shows to me same object names as vbscript...

Edited by t0nZ
clarified my problem...
  • 6 months later...
Posted
  On 2/1/2017 at 4:38 PM, Zoldex said:

Don't know, but it seems to be the same...

Can't understand.

Immagine.jpg

Expand  

I'm also experiencing this error. Anyone who knows why this is happening? Any help would be much appreciated.

SAP version 7400.3.12.1130

AutoIt v3.3.14.5

  • 7 months later...
Posted (edited)

I know this thread has been around a bit, but I was curious if anyone has been able to (and can show me examples of) select columns so they can be hidden or a filter applied?

Currently I am just selecting the Filter Button and trying to add a row to the filter but having issues...

Here is the code I am currently working on...

If _SAPSessAttach("[CLASS:SAP_FRONTEND_SESSION]") = False Then ; Attach to the session window and open TCODE

   Run("C:\Program Files (x86)\SAP\FrontEnd\SAPgui\sapgui.exe /H/sap.xxxxxxxxxxx.com") ; Open SAP
   WinWaitActive ("[CLASS:SAP_FRONTEND_SESSION]","SAP",1) ; Wait 1 second to allow SAP to open

   Send  ("UserName")
   Send ("{TAB}")
   Send  ("Password")
   Send ("{ENTER}")

   _SAPSessAttach("[CLASS:SAP_FRONTEND_SESSION]","TCODE") ; Attach to the session window and open TCODE

Else
   _SAPObjValueSet ("tbar[0]/okcd","/nTCODE")
   _SAPVKeysSend("Enter")
EndIf

_SAPObjSelect("usr/btn%_PARBPL_%_APP_%-VALU_PUSH") ; Press the Multiple Selection button.

;**********************************************************************************************************************
_SAPSessAttach("Multiple Selection for Work center") ; Attach to the selection window
; Put the Work Center into the lower and upper field.
_SAPObjValueSet("usr/tabsTAB_STRIP/tabpSIVA/ssubSCREEN_HEADER:SAPLALDB:3010/tblSAPLALDBSINGLE/ctxtRSCSEL_255-SLOW_I[1,0]","WC1")
_SAPObjValueSet("usr/tabsTAB_STRIP/tabpSIVA/ssubSCREEN_HEADER:SAPLALDB:3010/tblSAPLALDBSINGLE/ctxtRSCSEL_255-SLOW_I[1,1]","WC2")
_SAPObjSelect("tbar[0]/btn[8]") ; Press the Execute button.

;**********************************************************************************************************************
_SAPSessAttach("Dispatch List") ; Attach to the session window
_SAPObjSelect("tbar[1]/btn[8]") ; Press the Execute button.
_SAPObjSelect("tbar[1]/btn[29]") ; Press the Set Filter button.

;**********************************************************************************************************************
_SAPSessAttach("Define Filter Criteria") ; Attach to the selection window
_SAPObjPropertySet("usr/subSUB_DYN0500:SAPLSKBH:0600/cntlCONTAINER1_FILT/shellcont/shell", "selectedRows", "12") ******NOT WORKING*****
_SAPObjSelect("usr/subSUB_DYN0500:SAPLSKBH:0600/btnAPP_WL_SING") ; Press the Multiple Selection button.

 

No Error.png

Edited by djchaney3
Clarify - Added Picture

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...