Salesforce Certified OmniStudio Developer — Question 72
A developer has a requirement to create a child FlexCard that contains all of its parent FlexCard’s records in a Datatable
How should the developer configure the parent FlexCard's Data Node?
Answer options
- A. {recordId}
- B. {Params.records}
- C. {records}
- D. {records[0]}
Correct answer: C
Explanation
The correct answer is C, as using {records} allows the child FlexCard to access all records from the parent FlexCard. Option A only provides a single record ID, which is insufficient for a Datatable. Option B refers to a parameter that may not directly relate to the records, and option D restricts access to only the first record, which does not meet the requirement of displaying all records.