Automating GuiTable and GridView in Blueprism
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
18-05-21 04:12 PM
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.
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
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
18-05-21 04:21 PM
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
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
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
06-09-21 11:46 AM
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
------------------------------
