---
title: "PCF - Multi Select"
canonical: "https://support.appfire.com/space/PSJ/1589019824/PCF%20-%20Multi%20Select"
format: markdown
---
> Macro (aura-html)

> Macro (button-handy)



- If the selected option type is set to Issue Picker, the field displays issues as selection options in the edit issue ** **screen:

![PCF - Multi Select custom field on the edit issue screen](media://03c08713-57a3-4e6b-a083-736b2b3f5bcd)

When you update the issue, the new values appear on the view issue  screen:

![PCF - Multi Select custom field on the view issue screen](media://93dad025-e1a2-4ab5-b542-0b4afc53b51e)

---

## Examples

| **Example** | **Sample script** | **Sample display output** |
| --- | --- | --- |
| Using PCF - Multi Select with SIL data source | This script retrieves all groups associated with the current user.<br>```
return userGroups(currentUsername());
``` | "developers (dev-group)"  
"project-admins (pa-group)"  
"qa-team (qa-group)" |
| Using PCF - Multi Select with SQL data source | This query retrieves all group names from the database.<br>> ℹ️ Before using SQL data source, ensure you've configured the JNDI settings as detailed in the [SQL data source documentation](https://appfire.atlassian.net/wiki/spaces/PSJ/pages/1589019609).<br>```
select group_name from cwd_group;
``` | "developers (dev-group)"  
"project-admins (pa-group)"  
"qa-team (qa-group)" |