How to Link the Input Argument from the Orchestrator Process to the UIpath App

Hello,
I’m Trying to Create a UiPath App. While trying to link the App to the Process, To Pass the Input Argument to the Process, I m Not getting the Value Binding Option, Is there any alternate way to pass the Argument Value in the Latest Version?

Thanks in Advance.

1 Like

@Akshay_B

in the latest you would not have value binding options… we need to go with using app variables and assign the required values to the app variables

from the respective controls you can get the .value and assign to the app variable

cheers

1 Like

I am also struggling with same issue. Could you be more elaborate your solution by step by step process and which option we have to select, then we will get better understanding of it. @Anil_G

1 Like

@mkankatala @Akshay_B

A small sample implementation here

Have a page with name “Display”, under that a text field “TextRequired”, also one more added label to use the formula in the label field which is to display the text field value in the label field Display.TextRequired.Value…this is how you can access the value of the field you populated in anywhere

image

Hope this helps

cheers

1 Like

@Anil_G Thank you for the Information,
I tried displaying the value inputed in the Input text box on the Label as you specified and it worked, But could you please specify How can I pass this value as the In_argument to the Process that I have linked to the App?

@Akshay_B

create a app variable lnk to process and update the app variable data with the value you get from text box field

cheers

Thank you for that @Anil_G , I was able to pass the Input Argument from app to Process, Do you by any chance know how to pass the output argument from the Process to app, once the Process is Completed?

@Akshay_B

Create an output argument in process and link the output argument in app to an app variable

cheers

1 Like

@Anil_G I have already created the Out Argument , But I want the value of that Out_agument to be displayed on a text box, how can i connect it to App in the Text Box?

@Akshay_B

link the out argument with an app variable and use the app variable in the label field

cheers

Thanks for the Suggestion, I was able to solve it by passing the Out Argument to App variable inside the Start Process Event Trigger.
Thank you

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.