Salesforce Certified OmniStudio Developer — Question 30
A developer writes an OmniScript that includes a DataRaptor that updates the Account status based on information provided from the OmniScript. The information must be updated only if the Account record already exists. Otherwise, a new account must be created.
How should the developer accomplish this task?
Answer options
- A. Check the Upsert Key and Is Required for Upsert checkboxes on the Account Id field
- B. Check Overwrite Target For All Null Inputs checkbox on the Account Id field
- C. Populate the Lookup Object and Lookup Fields
- D. Check the Upsert Key checkbox on the Account Status field
Correct answer: A
Explanation
The correct answer is A because checking the Upsert Key and Is Required for Upsert ensures that the DataRaptor can either update an existing Account or create a new one when necessary. Options B, C, and D do not address the requirement of checking for the existence of the Account record and therefore would not achieve the desired outcome.