My requirement is, If I select IND, US etc country short forms from drop down, it should display full form like India, United States of America as a detailed name/Full country name near drop down.
Hi @PriyankaB1930, create a datatype in Pega which will store both the code and the full name. Now, create a datapage sourced by report which takes in code as a param (say IND) and provides the name as a result(say INDIA).
You are already displaying the list of country codes on UI mapped to a property, so pass this selected value as the param to the datapage you created and you’ll get the value, which you can then display on the UI.
Hi @PriyankaB1930: Please also check if auto complete helps to solve your problem.
Thanks.