the pickerFieldCustom field is replacing the user selected data to its identifier value , please suggest how to solve this.
my datasubset is as below :
a!dataSubset( data:a!flatten(local!output.data), identifiers: a!flatten(local!output.identifiers) )
Discussion posts and replies are publicly visible
The labels for the selected items are defined by the "selectedLabels" parameter.
Example: https://docs.appian.com/suite/help/25.2/recipe-configure-an-array-picker.html
i checked this pickerFieldCustom: selected value is NOT staying also but unable to understand the data is in local!questiondetails object
The data in this local comes from the same table that the picker is working with—it's simply filtered based on the selected items in the picker.
You can call a query on your data source by applying a filter on the primary key using the values from selectedValue (i.e., the selected items from the picker). This will return the list of corresponding records, which you can then use to display the selected labels in your custom picker.
selectedValue