Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
ExecuteListViewResult
Contains list view data that you retrieve programmatically.
To retrieve an executeListViewResult object, use the
executeListView()
call. The executeListViewResult object has the following properties:
| Name | Type | Description |
|---|---|---|
| columns | ListViewColumn[] | An array of the columns in the list view. |
| developerName | string | The list view’s fully qualified developer name. |
| done | boolean | If true, indicates that all records have been returned. |
| id | ID | The list view’s ID. |
| label | string | The display label of the list view. |
| records | ListViewRecord[] | An array of records that match the list view query. |
| size | int | The number of records that are returned by the list view query. |