What is the need to create flag. When we use flag ?
please give example…
Hello @Gitika_Verma ,
A flag is essentially a key name created within an entity. It is not mandatory to use the name “flag”—you can choose a name that fits your naming conventions. A flag is used to represent conditions. For example, if you want to perform a task based on a certain condition, you can use a flag.
Example:
Suppose you have a radio button for user identity with two values: Pan and Aadhaar.
When the Pan option is selected, an input field for the Pan number is displayed, and when Aadhaar is selected, an input field for the Aadhaar number is shown.
To achieve this, copy the radio button code for each selection using the Copy Data task, and store that code in an entity by creating a key. In my case, I named this key “radioValue”.
Create BRs based on the ‘radioValue’ to control the visibility of the input fields for PAN and Aadhaar.
So this is how you can achieve this.