I have an entity in Data Service (Customers) where one of the fields is a ChoiceSet of Countries.
I can save the selected value no problem when creating a new entity record, but when displaying the form with previously saved data, I want the dropdown to select the saved value, “Germany” for example.
I know how to do this in a MultiSelect Dropdown, but just can’t wrap my head around it in a normal, single-selection Dropdown.
Have you considered doing a lookup to the dataservice upon pageload, if the record exists then assign the value to a variable and use the extended property as the default selected value in the dropdown activity.
But ofcourse you need to have some sort of input, unless it’s always the latest created data record in dataservice.