Autopopulating details from screen 1 to screen 2

Hi

On first screen there is a drop-down control which will be displaying all the operators IDs

On selecting any operator I’d and submit , the second screen should pre populate the values of full name and email fields in read only mode

How to achieve that , please explain step by step .

Note :- there is no data type in the application

@SoumyaG82

  1. First screen UI will have dropdown control with source as data page D_pzListOperators
  2. Second screen flow action should be running on data page context D_pzOperatorDetails and have section configured in flow action to display all operator details with read only.
  3. To make it more reusable - first have a section (say A) to display operator details and have another section B including section A with presentation as read only. Configure section B in flow action.

There are multiple ways to do your use case. This is one among it. Hope it helps.

@SoumyaG82

You can use OOTB data pages to achieve this requirement

Screen 1. D_pxListOfOperators - To display the list of operators. Based on the selection, you store the value of the selected pyUserIdentifier in a property (SelectedOperator)

Screen2. D_pxOperatorDetails - To display the operator detail based on your selected pyUserIdentifier in the prior screen.