When viewing a Quote, the sales representative wants to easily see how many discounted items are included in the Quote Line Items.
What should a developer do to meet this requirement?
When viewing a Quote, the sales representative wants to easily see how many discounted items are included in the Quote Line Items.
What should a developer do to meet this requirement?
To meet the requirement, the developer should create a roll-up summary field on the Quote object that performs a SUM on the Quote Line Item Quantity field, filtered for only discounted Quote Line Items. Roll-up summary fields allow for the aggregation of data from child records (Quote Line Items) to a parent record (Quote), and can be filtered to include only specific records, such as those with discounts. This solution provides an efficient way to display the number of discounted items directly on the Quote object.
C is the correct answer
The best way to aggregate data is a rollup summary. C is the correct answer.
Shouldn't the C be a COUNT instead of a SUM? It is asking how many, not how much.
It is the best way.