Select right Row in SAP view

Hi Friends,

How do I select(click tick on highlighted) the right row in SAP transaction based on any value.

For eg below If I want to select a line with value IE01, how to do it ?
I can pass IE01 upfront, but while selection, how to ensure that system ticks the same row as IE01.

Screen below:

image

Thank you for your support as always,

Hello,

  1. Add a while loop and create a variable for Index in it’s Output properties

  2. Add a while loop activity with condition Exit = 0,
    a. use Get Text activity and inspect a cell in column 2 (with heading No.).
    Change the value of attribute tableRow in selector to {{Index}}. This is for dynamic selector.

    b. If value from above Get Text activity is blank, the exit the while loop by setting variable Exit = 1.

    c. use Get Text activity and inspect a cell in column 4 (with heading Prod D…)
    Change the value of attribute tableRow in selector to {{Index}}.

    d. If value from above activity is “IE01”, then pass “space” to firsr column with selector as tableColumn=1 and tableRow={{index}} to select the checkbox.

I hope this helps.

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.