SAP List row can't selected

mehmetbp

New Member
Hi Guys,

Firstly i want to thank to you all because I've learned much form you so far.
This is my first question, i was mostly a reader :)

There is a long invoice list on SAP and i have to select a row and then click a button. But i think blue prism does not support list operations.
I try to select a row with application modeler as an element but blue prism sees all the list as an element. I have to select only one row and then push a button.

Thanks again for your help. Regards.
 

Chandan008

New Member
Hi mehmetbp

SAP has GUI Scripting option where you can record and play like in Excel Macros.
Record your steps (whatever you want to do in SAP), this will create a unicode file (which can be opened as text file) where you will have the SAP script for your actions. (For this make sure SAP GUI Scripting is enabled- google it for this info)

In BP, add a code stage and add the below code before pasting the SAP script from above text file.

Dim SapGuiAuto as object
Dim application as object
Dim connection as object
Dim session as object
Dim sbar as string


SapGuiAuto = GetObject("SAPGUI")
application = SapGuiAuto.GetScriptingEngine
connection = application.Children(0)
session = connection.Children(0)

<Your SAP Script here>
 
Top