I want to know the method of auto population . Assume that I'm creating a reactive app for online shopping and what I
need is if I want to enter the same data more than one time which means it will take too much of time and one more thing we have to think about it from client side also.
so, I want to auto populate the data's which is already given from the previous steps.
If I've understood correctly, you're looking to prefill client side data forms when information has already been given in previous steps?If this is true, my first thought is why would you need to repeat fields which you already know the value for?Don't ask twice what you already know, would probably be the most user friendly approach.Other than that, you could get the respective entity record through an aggregate, and prefill all the already known values.Or, as you said, if the requirement is purely client sided, I suggest using client variables to store and retrieve previously entered information, given it's not sensitive information.here's the documentation link on client variables, hope this help!https://success.outsystems.com/Documentation/11/Reference/OutSystems_Language/Data/Handling_Data/Client_Variable