Select row in cursor in SAP

Hi everyone,

How do I select the row where the cursor blinks on SAP?
T-code : MIRO
Step

  1. find Mat Doc. in search box.
  2. cursor blink in row
  3. select this row

Thanks you very much.
Best regards
Lhar

I would suggest instead of seaching for reference doc in search box you can just use “Get Attribute” activity, use as selector any one cell under “Reference Doc” column. Use variable in the selector that stands for the actual Reference Doc you need usually it is something like text=strYourReferenceDoc.
The attribute you will take is the tableRow. Once you have the tablerow use it in a variable in the selector for clicking the row. I am not familiar with MIRO but if it has multiple hits, maybe you can process it one by one.

Hello avejr748,
Thank you for your idea. :slight_smile:

Please explain step by step ;
How do I use “Get Attribute” for search “Reference Doc” column?

Thanks you very much.
Best regards,
Lhar

Hi @kamonwan_boonpiturak you can read more about the get attribute activity Activities - Get Attribute (uipath.com)
Then same with most activities in UiPath that interacts with UI, there is selectors associated with it to identify the screen element. Your row under reference doc column would have a selector similar to

<wgnd sap..... id="some sap id related things here" text="your reference doc number would be here">

Replace on the selector text= and assign it to a variable strYourReferenceDoc so that it will identify the actual reference doc that you need.