function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
PrasadVRPrasadVR 

Custom button redirect Issue for multi select picklists

Hello ,

I have a custom button to create new case with default values , It's working fine for all the values other than multi select pick list . Can someone give guide me on how to do this.

I have vf page and controller and I am constructing url in the controller

RecordType=012500000009WsP&retURL=https://cs4.salesforce.com/0065000000GOU0t&Multi Select Id =abc& Multi Select Id=xyz& Multi Select Id= xyz .

But It returing the url as 
RecordType=012500000009WsP&retURL=https://cs4.salesforce.com/0065000000GOU0t&Multi Select Id =abc

Only one value I am getting , others are not appearing .



Atul111Atul111
Hi,

You have to pass the url like

RecordType=012500000009WsP&retURL=https://cs4.salesforce.com/0065000000GOU0t&Multi Select Id =abc;xyz;xyza

Please let me know if this solution is not work, i will try to find out some other alternate.