Hi bro, from last two months i am following your channel. Am having small doubt pls clarify me.I worked in blueprism there is option called choice stage, using that single action or activitites we can define multiple decision.likewise in uipath we having any option other than decision activities pls tell me.. It will help me lot. coz am completely new to uipath.
@UiPathRPA5 жыл бұрын
Welcome to UiPath RPA! Thank you Jagadeesh for watching my videos. We have Flow Switch Activity and Switch Activity in UiPath. kzbin.info/www/bejne/eX7ZYYqkaK6CgaM kzbin.info/www/bejne/rJq9fn1mg9R6pZI
@crazyreactions1393 жыл бұрын
Best Video
@priyankagangpuri68942 жыл бұрын
Thankyou sir
@prajaktawanjari31303 жыл бұрын
Hey I just noticed one thing in the message box when we use the variable type generic value we don't have to convert it to string by using ToSting.
@UiPathRPA3 жыл бұрын
Correct. It has been fixed in Latest version.
@chiragpatel16033 ай бұрын
How to handle null for generivalue type?
@UiPathRPA6 жыл бұрын
GenericValue - Types of Variable
@sharathshary6 жыл бұрын
What is the output of generic variables Var1 = "2 cars" Var2 = "3 bikes" Var3 = Var1 + Var2
@UiPathRPA6 жыл бұрын
Good question : Output : 2 cars3 bikes
@vikaskumar-do7he2 жыл бұрын
Sir show the error use interactive login how to resolve it
@UiPathRPA2 жыл бұрын
Hello Vikas, watch this video. Hope it will help you. kzbin.info/www/bejne/d5qsgZirZbShsNU
@ThuyNguyen-mh1du5 жыл бұрын
What is the output of generic variables Var1 = 2 Var2 = "test" Var3 = Var1 + Var2
@kalpdalal65345 жыл бұрын
I think "test" will be converted to ASCII format and then added to the integer type var1
@syedrizvi71784 жыл бұрын
It will through Runtime execution error. Because the first value is an integer and the second is a string. However, in the below case, it will work. Var1 = "test" Var2 = 2 Var3 = Var1 + Var2 Output: test2
@snehajaiswal81674 жыл бұрын
In this scenario, the output will be : test2. But in vice versa when val1=2 and var 2 ="test. you will get an error : "System.InvalidOperationException " because it cannot add System.Int32 to System.String (i.e 2 is int and "test" is string)