Request a value at the right place

0
Hey Guys,  I am currently working on a tool.  I am using Wizard Steps, because its kind of a registration. In Step 1 I set one value of an enumeration via DropDown. In Step 2 – which is on another Page, I want to retrieve the value of this enumeration and call it in a Microflow, that asks which enumeration was chosen before by the User, to then move on based on this value.  Thank You in Advance!   
asked
1 answers
1

If I understand correctly: you have data available on page 1 and want to pass it on to page 2?

Make sure page 2 has a data view with the same entity as page 1 to pass on the object with the enumeration. Then from page 2 open a microflow with a parameter of that entity. Or if you want to run the microflow before opening page 2, make sure all links on page 1 to open page 2 open a microflow with a parameter of that entity. Do whatever you need and open up page 2 from that flow, while passing the object.

answered