Hi everyone,
How do I select the row where the cursor blinks on SAP?
T-code : MIRO
Step
- find Mat Doc. in search box.
- cursor blink in row
- select this row
Thanks you very much.
Best regards
Lhar
Hi everyone,
How do I select the row where the cursor blinks on SAP?
T-code : MIRO
Step
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.
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.
Hi @avejr748 , Thanks for your solution. But what if in sap table we have
System | Roles | To Select |
---|---|---|
A1 | XYZ | Yes |
A1 | IJK | No |
B1 | ABC | No |
B1 | XYZ | Yes |
How to perform this to select row ?
How to pass multiple values dynamically in selector ?
Thanks in advance.
Hi @harikrishna.reddy3 UiPath studio is quite versatile that there is a lot of ways to do one thing. So first thing first is what you are trying to achieve? If you just want to get all values in your SAP table, no need to select rows, you can go straight to extract debatable activity to get all data from your SAP table.