Size: a a a

2019 December 25

M

Mr. International in Uipath RPA
Hi Guyz,

I have situation here where I'm building a robot in a statemachine. I want it to read a single excel file with 2 worksheets. the process for each sheet the robot has to perform is different from each other. now my question is how to pass each row (for both the sheets simultaneously) in the "Get transaction" invoke function?
источник

M

Mr. International in Uipath RPA
RE Framework*
источник

А

Алексей in Uipath RPA
Try json file. IMHO
источник

DA

Dushyanth Alla in Uipath RPA
Переслано от Dushyanth Alla
UI robot is not appearing to use.. Plz help me
источник

А

Алексей in Uipath RPA
Переслано от Алексей
If schemas of the tables are the same in sheets, then...

Read 1Sheet to dt1, Read 2Sheet to dt2,

Join dt1 and dt2 to dtTransaction.
For each row in dtTransaction
Add Queue Item
источник

Ю

Юрий in Uipath RPA
Mr. International
Hi Guyz,

I have situation here where I'm building a robot in a statemachine. I want it to read a single excel file with 2 worksheets. the process for each sheet the robot has to perform is different from each other. now my question is how to pass each row (for both the sheets simultaneously) in the "Get transaction" invoke function?
If you need to convert from DataRow to Dictionary(of string, object) as ItemInformationCollection argument of Add Queue Item activity, then there is code below. There is column name is key and cell value is value. This code must be put into For Each Row activity and element is "row"

row.Table.Columns.Cast(Of DataColumn)().ToDictionary(
 Function(c) c.ColumnName,
 Function(c) If( row(c.ColumnName).ToString.Equals(String.Empty),
   CType(String.Empty, Object),
   row(c.ColumnName)
 )
)
источник

M

Mr. International in Uipath RPA
Thanks Will try
источник

NK

ID:824225348 in Uipath RPA
Merry Christmas all of you
источник
2019 December 26

k

knopith in Uipath RPA
Hi

I'm seriously looking for a solution

2different works should be done

1pull the data and excute the result

Basically it's a stock trading related topic, anyone help me. If u able to or take challenge.
источник

k

knopith in Uipath RPA
Yes.& I didn't know how to deal with it.
источник

N

Nabeel in Uipath RPA
источник

DA

Dushyanth Alla in Uipath RPA
I’m getting an error using the activity call “Send Mail” which should be use within a “Microsoft Office 365 Scope”. I know is error usually appears when you have a variable that is empty. But, I have hard coded all the properties and still getting this error. Any help would be highly appreciated
источник

DA

Dushyanth Alla in Uipath RPA
источник

HS

Haky Singh in Uipath RPA
I need tin se uipath community edition
источник

HS

Haky Singh in Uipath RPA
On windows server with no internet connection..
источник

HS

Haky Singh in Uipath RPA
Need to run this for poc on that server..
источник

HS

Haky Singh in Uipath RPA
Any option i can do this.. may be trail run or any trail key if avaiable ?
источник
2019 December 27

PS

Pranav Singh in Uipath RPA
Have you entered the port number and server name ?
источник

NK

ID:897243881 in Uipath RPA
Hi everyone ,in Uipath is there any way to get robots utilisation ?
источник

А

Алексей in Uipath RPA
Переслано от Алексей
Select from db of Orchestrator
источник