[SalesForce] Flow Component to display list of Account records in a screen Flow

I'm calling an apex class from a screen flow that would return me list of account records. I want to display this list of records and be able to select those records individually in screen flow. Is there a screen flow component that I can use to accomplish this? Based on the records that I selected I want to create records in a related object later in the flow.Any suggestions on this please.

Best Answer

To display records, there are two options that come to mind.

  1. Use the standard Record Choice Set component. This limits you to only displaying a specific field from the record and doesn't work well when you need it to be formatted or additional fields displayed.

  2. Use the Unofficial Salesforce Datatable component. This component is much more flexible and lets you display data in columns.

Related Topic