The synced record type Customer has a one-to-many relationship with the Case record type.
You need to calculate the number of open cases for each customer.
What are two valid methods to accomplish this? (Choose two.)
A.
Within the Case record type, edit the relationship to the Customer record and select the "Open” status as the grouping filter.
B.
Within the Customer record type, create a custom field that evaluates in real-time to aggregate related record fields and count the open cases.
C.
Create a query expression for the Customer record type. Utilize the a!measure() function within the aggregation fields to count the related cases in the “Open” status.
D.
Create a sync-time custom record field within the Customer record. Utilize the a!relatedRecordData() function to filter open cases and count the number of entries.
A real-time custom field in the Customer record type can aggregate and count related open cases.
A sync-time custom record field using a!relatedRecordData() can filter and count open cases, making the count available as a synced field.
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit