What two tools can an administrator use to debug an issue with an Apex trigger?
The administrator can use two tools to debug an issue with an Apex trigger: Log Inspector in the Developer Console and Debug Logs in Setup. The Log Inspector is a tool that displays a graphical representation of a debug log, which is a record of database operations, system processes, and errors that occur when executing a transaction or running unit tests. The Log Inspector helps you analyze and troubleshoot your code by highlighting errors, checkpoints, and execution times. The Debug Logs page in Setup lets you monitor and retain debug logs for users, Apex classes, Apex triggers, and Lightning components. You can view, download, or delete debug logs from this page.
An administrator suspects that recent changes to a flow have created a defect. The administrator wants to test the flow with input data that they believe will cause the error. What can the developer do next?
Debugging a flow with input data allows the administrator to test the flow with specific values and see how the flow behaves. The Debug with inputs option is available in the Flow Builder toolbar and lets the administrator provide input values for each flow variable before running the flow. Verified Reference: https://help.salesforce.com/s/articleView?id=sf.flow_builder_debug.htm&type=5
An administrator needs to import Order Summary records containing historical data but does not want them to be actioned on by Order Management. Which feature supports this use case?