Real world problem to microflow

0
Hi Community,   I have understood all the components for designing a microflow but facing problem when trying to implement some logic like I want a suggestion on input field from data in database. On filling one field in a form all fields should be auto polpulated, can somebody help out.
asked
1 answers
1

Before opening the page where you want to autopopulate, retrieve the database object you want to populate with, create new object, and if you want to auto populate, use the values of the retrieved object to fill the new object with and adjust the new object according to your wishes.

 

Or you could look at the autocomplete widget.

 

Or put an onchange microflow on the on change of the field and retrieve data from there based on the input of the user. And return the data you want.

answered