Problem Description:
I am working on CV Automation in SAP Business One (SAP B1), and the automation runs inside a Remote Desktop (RDP) environment. I am not able to use ui automation in that, For that I am using CV Click activities to identify and click on document numbers listed in a SAP B1 Excel-style table/grid.
My logic is to scroll down and click the first matching number from the list.
For example, I want to click on 143281, which is located below in the list (not visible on screen initially).
However, UiPath is clicking 143291, which is already visible on the screen, ignoring 143281 which is further below and requires scrolling.
I tried using:
CV Click
Scroll activities of scroll down as cv click property with 2
Anchor Base with CV Click
But still, the bot clicks the first visible number (143291) instead of scrolling to locate and click 143281.
Observations:
It seems UiPath is using partial matching (1432) instead of full text recognition (143281).
When using scroll in CV Click properties, no scrolling happens at all.
SAP B1 inside RDP does not support strong selectors — mostly image-based UI.
CV Click does not seem to scroll inside SAP B1 when screens are image-rendered via RDP.
I need help on:
-
How to force UiPath to scroll in CV environment to search and click a number that is not visible on the screen?
-
How to ensure exact text matching (143281), not partial match (143291) using CV activities?
-
Alternative methods to reliably handle SAP B1 tables inside RDP environments when CV Click fails.
-
What is the best approach to enable scrolling and ensure full-text matching when working with SAP B1 tables inside RDP?
-
Any better design — like OCR extraction, keyboard navigation (Ctrl+F), or Click Text with scroll loop?




