3 respuestas
To retrieve only the sObjects from your Salesforce org that have at least one field set associated with them, you can follow these steps:
- Retrieve all sObjects from the org using a describe call.
- Iterate through the sObjects and perform a describe call on each sObject to check for field sets.
- Include the sObject in your final list if it has at least one field set associated with it.
- By following these steps, you will have a list of sObjects that meet your criteria.