A data page is used to retrieve data from an external system. If an error occurs, you want to display a message to the user and send an email to the system administrator.
How do you implement this requirement?
A data page is used to retrieve data from an external system. If an error occurs, you want to display a message to the user and send an email to the system administrator.
How do you implement this requirement?
To implement the requirement of displaying an error message to the user and sending an email to the system administrator when an error occurs while retrieving data from an external system, you should configure an error handling process that manages both actions. This process will include steps to display the error message and send an email notification. This approach ensures that both tasks are handled systematically within the error handling framework.
I would say D: Create an error handler data transform that adds an error message to the data page and sends an email.
C looks like the best answer.