Hii,
In my case i have to edit the multiple Dropdown field value:
the value from my record type is like : "Product 1,Product 2".
So, value is not matching with choice value. How to resolve this, I tried converting the value to list of text using split but still it is not working.
Discussion posts and replies are publicly visible
split(local!value,"; ")
Hello antogladvinj3315 ,
If you are using constants for both choiceLabel and choiceValues then why are you initially fetching record data in the local!value and trying to save the selected values in the same local variable. This will override the initial value in local!value. Do you want to update the record based on the selection from multipledropdownfield() ? And what values are provided in the constants you are using?
Yes, I want to update the record
Initially, I will use this drop down and select some product and submit.
later i want to edit this Product names so, While iam chaning or if it is more that one product name it is giving this error.
The issue is after saving on first it is producing some space i don't know how
if you carefully see in the value there is a extra space between both values
While getting the list use trim() function to remove the unwanted spaces or in split(list,"; ") try this method
Thanks It worked
Then define a separate local variable to save the values from multipledropdownfield() (not in local!value). And update your record using saveinto in a button action field.
Hi antogladvinj3315 ,
Is this your issue is resolved? If yes then please describe how to resolve??
Thank you