Dynamic click action after extract data wizard reads SAP table

Hello, I am trying to extract a table from SAP that has many columns. I honestly am just looking at one column call “Itm” and looping through to see which row where “Itm” equals a variable I have called ItemNo that I am pulling from a queue. Once that row is found I need to have it click the first checkbox in that row to select that entire row so I can delete it. The extract data wizard unfortunately does not read that column where the checkbox is located.
This is the image of the table to be extracted and I Highlighted where I must check the box of the row I need.

This is what the extract table wizard reads

Hi @mojo001

There are two ways i can think of you can achieve this you will Get a specific table row value for each column in your list. Also keep in mind the table row will start from 0

  • Once you find a match, extract the table row value for that matched row.
  • Use this value to make the click dynamic.

another way check if you can filter the row in SAP by giving the itm no if it is unique you will get only one row which is easy for click automation.
image

Hope this helps :slight_smile: