This is what I have for my visualforce page.
<apex:page standardController="Task" tabStyle="Task" recordSetVar="tasks">
<apex:repeat value="{!tasks}" var="row" rendered="false">
{!row.Id}
</apex:repeat>
<flow:interview name="Task_Delete">
<apex:param name="TaskCollection" value="{!tasks}" />
</flow:interview>
</apex:page>
Finally, here is the setup for the List View button.
답변 2개
Hi Caleb,Greetings!Yes,you can pass the the list of record from VF page to Flow.Please find the step by step process of this in the below document:https://succeedwithsalesforce.com/multi-select-and-mass-update-records-in-lightning-list-views-using-flows-visualforce-and-a-list-button/Reference:https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_flows_setting_values.htmKindly let me know if it helps you and close your query by marking it as best answer so that it can help others in the future.Warm Regards,Shirisha Pathuri