Omnistudios Dev Test Prep Flashcards
Why would a developer clone an Integration Procedure instead of versioning it?
A. The new Integration Procedure uses a Cache Block.
B. The new Integration Procedure it replacing stub data.
C. The new Integration Procedure will be used independently
D. The new Integration Procedure is Chainable.
C
A developer needs to configure a calculation procedure to calculate the sum of the entire Base price.
What is the most efficient way for the developer to meet this requirement?
A. Create a Postprocessor apex class to calculate the sum.
B. Add an Aggregation Step as SUM (BasePrice)
C. Add A Calculation Step as SUM (BasePrice).
D. Create a Preprocessor class to calculate the sum
B
A developer needs to configure a calculation procedure to calculate a subtotal using two different calculations depending on whether the input Boolean variable is Customer is set to true or false.
How should a developer configure the calculation procedure to conditionally execute the correct formula?
A. Use two separate Calculation Steps with the Conditional Step property selected: use the
ISTRUE(isCustomer) and NOT (ISTRUE) (isCustomer) functions in the Condition syntax.
B. Use two separate Calculation Steps with the Conditional Step property selected: reference just the
isCustomer variable in the Conditional syntax (no comparison necessary)
C. Use two separate Calculation Steps with the Conditional Step property selected: compare the
isCustomer variable directly to the literal true and false values in the Condition syntax.
D. Use a single Calculation Steps with IF statement directly in the formula definition to
reference the isCustome variable and conditionally perform the appropriate calculation.
C
A developer has a requirement to create a child FlexCard that contains all of its parent FlexCard’s
records In a Datatable How should the developer configure the parent FlexCard’s Node?
A. {records{0}}
B. {records}
C. {params, records}
D. {recorded}
B
Users receive an APEC CPU limit Exceeded error when running an OmniScript in a Salesforce Community. The OmniScript includes an Integration Procedure that contains two DataRaptors.
Which two Locations should the developer check to troubleshoot the issue? Choose 2 answers.
A. Script configuration
B. Community logs
C. DataRaptor configuration
D. Action Debugger
C,D
A developer creates a DataRaptor Extract to retrieve data to pass to an external service. The external service expects the field value to be integer. However, the DataRaptor is sending it as a string.
Which action can the developer take to fix this?
A. In the DataRaptor Output tab, select the Output Data Type for that field in Integer.
B. In the DataRaptor Output tab, enter the default value as 0 on the field.
C. In the DataRaptor Extract tab, set the Input Data Type field to Integer.
D. In the DataRaptor Formula tab, define a formula using the function TOINTEGER and use the formula
as output.
A
What OmniStudio tool pre-populates the data to a PDF used by an OmniScript?
A. A SOQL Query.
B. A DataRaptor Load.
C. A DataRaptor Extract.
D. A DataRaptor Transform.
D
A developer creates a new FlexCard to display customer data and actions, such as updating billing
information and changing the contact for the customer account. The FlexCard contains 10 fields and 5
actions.
During testing, several fields display with the correct data, but one of the fields shows only the label.
What could cause this?
A. The fields have exceeded the maximum number allowed on the card.
B. The field is null 0 the Salesforce record.
C. {recordld} us misspelled in the Data Source Input Map.
D. There are no test parameters configured.
B
A developer needs to build a multi-step intake form. Each step must allow the user to cancel the
intake at any time. The developer is using an LWC OmniScript to build the form.
How should the developer implement the cancel functionality for all steps using the LWC OmniScript
Designer?
A. Check the Enable Cancel checkbox in the Setup tab under Cancel Options.
B. Add a navigation Action inside each step and set the Component name to ‘’Cancel’’,
C. Add a navigation Action outside each step and set the Element Name to ‘’Cancel’’,
D. Add a navigation Action inside each step and set the Element Name to ‘’Cancel’’,
A
A developer needs to retrieve data from an external system that stores policy data. The external
system supports REST APIs to access and update the policies. Due to the volume of the policy data and
peak hours of hours of business, calls to the REST APIs sometimes take longer than expected to
response.
The developer creates an Integration Procedure to retrieve the policy data for use in an OmniScript.
Given the external system’s knows performance issues, which configuration should be used to
implement the call to the external system? Choose 2 answers
A. Set the Timeout property on the HTTP Action in the Integration Procedure
B. Configure a Remote action with timeout settings of 120000
C. Check the Chainable checkbox on the integration procedure Action in the OmniScript
D. Check the Chain on Step Check on the HTTP Action in the Integration Procedure
A developer is configuring a DataRaptor Load to Save contract data. The developer needs to set the
record type of the contact using DeveloperName.
Which two configuration actions should the developer take to set this up in the DataRaptor Load?
A. Check is Lookup property when mapping the fields.
B. Add Link to RecordType object in the Contact Object with the id field of RecordType object.
C. Select RecordType in the Lookup object list. Development in the lookup Field list, and ID in the
Lookup Requested Field list.
D. Select RecordType in the Lookup Object list. ID in the Lookup Field list, and Development in the
Lookup requested Field list.
A,C
A company wants to allow agents to send customers a quote for signature. The quote is a documents
created using a DocuSign template that has been prefilled with all of the quote details. The document will
be emailed to one or more recipients for signature.
How should a developer configure this functionality in an OmniScript?
A. DocuSign Envelope Action
B. PDF Acwm
C. DocuSign Signature Action
D. Email Action
A
A developer is configuring the API URL in an HTTP Action element within an Integration procedure.
What is the merge code syntax for passing a Date node from an element named SetValues in the URL?
A. x%SetValues.Date%
B. (‘ Setvalues’] [ ‘Date’]
C. %SetValues: Date%
D. {(SetValues. Date)}
C
What should a developer’s first step be when troubleshooting whether a DataRaptor Extract is
retrieving data?
A. Go to the Lightning Console and reload the page to test.
B. Go to the PREVIEW tab In OmniScript to test.
C. Deactivate the card and layout, and go to the PREVIEW tab for the card to test.
D. Add a key/value pair in the DataRaptor to test it.
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?
A. Check the Upsert Key checkbox on the Account Status field
B. Check the Upsert Key and Is Required for Upsert checkboxes on the Account Id field
C. Populate the Lookup Object and Lookup Fields
D. Check the Overwrite Target For All Null Inputs checkbox on the Account Id field
C
A developer needs to retrieve data from an external system that stores policy data. The external
system supports REST APIs to access and update the policies. Due to the volume of the policy data and
peak hours of business, calls to the REST APIs sometimes take longer than expected to respond.
The developer creates an Integration Procedure to retrieve the policy data for use in an OmniScript.
Given the external system’s known performance issues, which two configurations should be used to
implement the call to the external system? Choose 2 answers
A. Set the Timeout property on the HTTP Action in the Integration Procedure
B. Check the Chainable checkbox on the Integration Procedure Action in the OmniScript
C. Configure a Remote action with timeout settings of 120000
D. Check the Chain On Step checkbox on the HTTP Action in the Integration Procedure
A,C
A developer is troubleshooting an Integration Procedure with two elements: A Remote Action named
FetchCart and a Response Action named ResponseCart.
In Preview, what JSON node shows the data sent to the Response Action?
A. FetchCart
B. Response
C. ResponseCartDebug
D. ResponseCart
D
An integration Procedure uses an HTTP action to make a REST API call. The response from the
REST API must be converted into a specific XML structure before sending it as an input to another
external wen service.
How should the developer configure the Integration Procedure to meet this requirement?
A. Use a Remote Action that calls the XMLStreamReader class
B. Use a Remote Action that calls the XMLStreamWriter class
C. Use a DataRaptor Transform to convert JSON to XML
D. Use a DataRaptor Extract and check the XML checkbox on the Output JSON Path.
In a calculation procedure, what is required for the output of a calculation step to be used in an
aggregation step?
A. It must be included in constants.
B. It must be a matrix lookup step.
C. It must be a calculation step.
D. It must be included in the calculation output.
D
A developer needs to limit the of a DataRaptor Extract to a maximum of one result.
How should the developer configure this?
A. Define a formula with the Filter function
B. Use a Custom Output Type when creating the DataRaptor
C. Use the LIMIT filter on the Extract definition
D. Set the Limit Property on the Action that calls the DataRaptor Extract
C
A developer is creating a FlexCard and needs to display additional information using a Flyout.
Which two types of components can the developer embed in the flyout? Choose 2 answer
A. An OmniScript
B. An Integration Procedure
C. A DataRaptor
D. A Child FlexCard
B,D
On a FlexCard canvas, several fields display with Salesforce data, but one of the fields shows only
the label.
What could cause this?
A. In the Setup Pabel, {recordId} is misspelled in the Data Source Input Map.
B. The field name in the FlexCard state does not match the DataRaptor Extract’s Output JSON Path
name.
C. In the FlexCard state, the Field type for the field does not match the type in the Salesforce record.
D. There are No test Data test Parameters configured.
B
What two advantages does a DataRaptor Turbo Extract have over a standard DataRaptor Extract?
Choose 2 answers
A. It populates data in PDF and DocuSign format
B. It is easier to configure
C. It has better performance at runtime
D. It supports complex field mappings
B,C