Solved
Can we refer a single property with a data page on UI
We have a Countries drop down and this dropdown is being sourced by a data page (this data page is in turn sourced by a Connect REST)so now based on the country value we need to populate Currency filed which is read only single property(suppose i select country as India currency should auto-populate to INR).How to achieve this requirement.
***Edited by Moderator Rupashree to change type from General to Product, added Product details and Capability tags****
To see attachments, please log in.
@TanyaS58
As you are getting the country information through rest service, on change of the dropdown add the change event with action refresh section. Call the DT in the refresh section.
If you want to have the currency in pega. Then have one decision table which returns the currency when country is passed. Call this decision in the abov DT.
Or
If you dont want to maintain currency in pega environment, find the service which returns it. Call that service on the on change of country drop down
Or
If you are getting the currency from the existing service, well and good. Then maintain the currency alone in dynamic layout and add the refresh condtion like country value changes.