What is the best practice to get the sum of all Order Line item totals on the Order record?
Universal Containers has implemented an order management application. Each Order can have one or more Order Line items. The Order Line object is related to the Order via a master-detail relationship. For each Order Line item, the total price is calculated by multiplying the Order Line item price with the...
Which Lightning Web Component custom event property settings enable the event to bubble up the containment hierarchy and cross the Shadow DOM boundary?
Which Lightning Web Component custom event property settings enable the event to bubble up the containment hierarchy and cross the Shadow DOM boundary?A . bubbles: true, composed: trueB . bubbles: true, composed: falseC . bubbles: false, composed: falseD . bubbles: false, composed: trueView AnswerAnswer: A Explanation: To enable a custom...
How should this be accomplished?
A developer is creating an app that contains multiple Lightning web components. One of the child components is used for navigation purposes. When a user clicks a button called Next in the child component, the parent component must be alerted so it can navigate to the next page. How should...
What is the most efficient way to implement this and follow best practices?
A developer wants to improve runtime performance of Apex calls by caching results on the client. What is the most efficient way to implement this and follow best practices? A. Call the setStorable () method on the action in the JavaScript client-side code. B. Set a cookie in the browser...
What should the UC development team use to automatically run tests as part of their CI process?
Developers at Universal Containers (UC) use version control to share their code changes, but they notice that when they deploy their code to different environments they often have failures. They decide to set up Continuous Integration (CI). What should the UC development team use to automatically run tests as part...