cancel
Showing results for 
Search instead for 
Did you mean: 

Automating GuiTable and GridView in Blueprism

NidhiMehata
Level 3
How can GuiTable and Gridview be automated in blueprism.

Let's say
1. I want to modify a cell in a GuiTable, The write stage in blueprism does not support modifying cell. All that can be done via this element is read the rows.
2. Out of 5 rows, select 1'st and 3rd row of the table

I have seen that modifying a cell in a grid is possible via sap gui scipring(Adding code stage), but is it not possible with write action?

What is the best practice when dealing with guitable and gridview? Should interaction with these always be done via code stage.
2 REPLIES 2

EmersonF
MVP
Hello @NidhiMehata, see if it helps you in any way Blue Prism ALV GRID Properties, Methods, & Controls: Insert Row Example - YouTube
I believe that in this specific case the best solution would be to use SAP SCRIPT, if you always have to select this Out of 5 rows, select 1'st and 3rd row of the table
We are a family owned and operated business.
If I was useful please mark it as useful
Sr Cons at Avanade Brazil

EVIPUTI
MVP
Hi, it is possible to do it with code stage: var grid = (GuiGridView)GetSession().FindById(elementId); grid.SelectedRows = selectedRows; 2 inputs: SelectedRows - indexd of selected row (starting from 0 I think) elementId - Element Id of table

------------------------------ Vipul Tiwari Senior Process Simplification Developer Amazon ------------------------------