Extracting from values from SAP Screen using UiPath Studio

Hi team,
Currently I am working on RPA automation that interacts with SAP application. I want to give a little bit background about the process -
I am using REFramework - for every transaction that is supposed to be updated in SAP - at this stage we need to extract the values use in the screenshot here.


For now let’s consider Person number which the value we want to extract is 86529. When I try to extract - I’ve not been able to extract the number, instead the title (Person number) keeps being extracted instead of the number.

FYI - This number (86529, for example) is required for the next step of the process.

Can anyone advise how to do the extract from the screen?

Thanks a lot for your help!

Sisay

hi @Sisay_Dinku

Can you share the selector and it’s screenshot from UiExplorer window?

Thanks

Hi @adiijaiin

I was able to extract after switching from classic to Modern and used Use Application/ Browser
as you can see below

Great :smiley:

You could have used get text as well as you just need I guess the first row?

When I did get text
It extracts the title not the value.

If you see my original screenshot Post, it is the get text’s output “Person number”. Is there anyway you think of without switching to modern design? Thanks!

Hi @Sisay_Dinku

Use the table extraction on that window you will get all the values in the datatable then you can assign person number from that datatable to a variable.

YourVariable = YourDataTable.Rows(rowIndex)("ColumnName").ToString()

Hope this helps :slight_smile:

1 Like

That was the reason why I asked the selector for the activity.

You have to fine tune the selector for that.