when a customer submits a credit card dispute, the application connects to an external service to retrieve all transaction made by the customer. the external service returns transactions ordered by date of transaction, in a descending, chronological order when a case worker reviews the dispute the application displays the 10 most recent transactions.
if the case worker does not see the disputed transaction in the list, the case worker can search for additional transaction the caseworker can filter search results on transaction date the transaction amount or the merchant name the search results display the 10 most recent transactions that satisfy the filter criteri
- the case worker cannot paginate through the results.
how do you configure the response data transform to satisfy all of the requirements in the scenario? - configure the data transform to copy only the first 10 matching records to a page list property
- configure the data transform to copy all of the records to a page list property
- configure the data transform to copy all of the records to the data page
- configure the data transform to use the first x pagination setting to copy only the first 10 results to the data page
Answer(s): A
Explanation:
To configure the response data transform to satisfy all the requirements in the scenario:
Configure the data transform to copy only the first 10 matching records to a page list property (Answer A):
This approach ensures that only the required number of transactions (10) are displayed initially, meeting the requirement of showing the most recent transactions without overwhelming the case worker with too much data.
Reference:
Pega's documentation on data transforms explains how to manipulate data and limit the number of records copied to a property, ensuring efficient data handling and display.
Reveal Solution Next Question