Salesforce Platform Developer I (legacy) — Question 135
Which two SOSL searches will return records matching search criteria contained in any of the searchable text fields on an object? (Choose two.)
Answer options
- A. [FIND 'Acme*' IN ANY FIELDS RETURNING Account, Opportunity];
- B. [FIND 'Acme*' RETURNING Account, Opportunity];
- C. [FIND 'Acme*' IN ALL FIELDS RETURNING Account, Opportunity];
- D. [FIND 'Acme*' IN TEXT FIELDS RETURNING Account, Opportunity];
Correct answer: B, C
Explanation
The correct answers are B and C because both searches utilize the syntax that allows them to search through all searchable text fields. Option A specifies 'ANY FIELDS,' which does not guarantee that only text fields are searched, and option D limits the search to only text fields, thus not encompassing all searchable fields.