How to return a microflow string value to a text box?

0
My requirement is the result (string) from Microflow to show in a text box. Is this possible? 
asked
3 answers
3

Hi,

  1. Create a non-persistent entity:

    • Create a new entity with a string attribute that will hold the result.
  2. Modify your Microflow:

    • In your Microflow, once you have the result string ready, create a new object of the non-persistent entity you just created.
    • Set the string attribute of this object to the result string.
    • Use a "Create Object" action to create this non-persistent entity object.
  3. Display the result on the page:

    • Bind the Text Box widget's "Microflow" property to call the above microflow and display the attribute.
answered
0

Hi Georgy,

 

You may try to use a non-persistent helper entity (and a string attribute ) copy the value to the attribute and show it on the page.

 

Ferhat

answered
-3

Hello,

To display a microflow's string result in a text box:

  1. Create a microflow to generate the string.
  2. Add a text box.
  3. Link the text box to the microflow's output.
  4. Trigger the microflow (e.g., on a button click).
  5. The text box will show the microflow's result.

Thanks for this answer.

 

Regards

Emma Wilson (Blue Prism Training

answered