option
Questions
ayuda
daypo
search.php

Omnislash Yurnero

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
Omnislash Yurnero

Description:
Bladefury

Creation Date: 2023/07/27

Category: Others

Number of questions: 80

Rating:(0)
Share the Test:
Nuevo ComentarioNuevo Comentario
New Comment
NO RECORDS
Content:

A developer needs to configure a calculation procedure to calculate a subtotal using two different formulas depending on whether the input Boolean variable isCustomer is set to true or false. How should a developer configure the calculation procedure to conditionally execute the correct formula?. Use two separate Calculation Steps with the Conditional Step property selected: use the ISTRUE(isCustomer) and NOT (ISTRUE) (isCustomer) functions in the Condition syntax. Use two separate Calculation Steps with the Conditional Step property selected: reference just the isCustomer variable in the Conditional syntax (no comparison necessary). 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. Use a single Calculation Steps with IF statement directly in the formula definition to reference the isCustome variable and conditionally perform the appropriate calculation.

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?. x%SetValues.Date%. (' Setvalues'] [ 'Date']. %SetValues:Date%. {(SetValues.Date)}.

A developer needs to display the following information together on one FlexCard: * Account name, address, phone number, website * Primary contact first name, contact name, address, phone number, email The account information must always be visible, and the contact information should only be visible as needed by the user. What approach should the developer use to display the contact information on the card?. Use a Datatable element. Set the class ''collapsible'' on the block element. Set the collapsible property on the block element. Use a conditional FlexCard State.

A developer is creating a FlexCard and needs to display additional information using a Flyout. Which two types of components can the developer embed on the flyout? Choose 2 answer. An OmniScript. An Integration Procedure. A DataRaptor. A Child FlexCard.

A developer examines data received from an external data source. The data is nested two levels down in the JSON structure. Which OmniStudio tool could the developer use to simplify this data?. A guided workflow. A DataRaptor Transform. An HTTP Action Element. An 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?. Check is Lookup property when mapping the fields. Add Link to RecordType object in the Contact Object with the id field of RecordType object. Select RecordType in the Lookup object list. Development in the lookup Field list, and ID in the Lookup Requested Field list. Select RecordType in the Lookup Object list. ID in the Lookup Field list, and Development in the Lookup requested Field list.

A customer sets up two LWC Omniscripts, one embedded into another. Account is set in a Set Values element in the parent Omniscript. The AccountId set in the parent Omniscript is used to another Set Values element ContextAccountid in the embedded OmniScript. The embedded Omniscript is activated. While previewing the OmniScript flow from the parent, it is found that Account is set correctly in the parent OmniScript. However. ContextAccountId in the embedded OmniScript is not set with the AccountId from parent Omniscript. On previewing the embedded OmniScript individually, it is found that ContextAccountId is set correctly. What is the reason for this? Refer to the exhibit below. Both parent and embedded OmniScripts have the same element name for the Set values element. A developer failed to include a Navigation Element to pass data from the parent OmniScript. The LWC PubSub Message flag in the Set Values action of the parent has not been set. The flag passDataJSON in the parent OmniScript in not configured correctly.

An integration procedure contains a Remote Action element that calls a method of an APEX class. The method requires two fields are input: Accountid and ProductId. The integration Procedure data JSON contains the following nodes: How should the Remote Action element be configured to pass the data correctly to the method? Additional Input: -AccountId: %AccountId% -ProductId: %Details:ProductId%. Check the Send Only Additional Input checkbox, and the following/ value pairs to Additional input:. Set Return Only Additional Output to true, and add the following Key/Value pairs to additional input. Check the DataRaptor Transform checkbox, and add the following Key/Value pairs to Output JSON Path:. Add the following to Send JSON Path: accountId: %Accountd% ProductId% Details Products%.

Which two in an integration Procedure or DataRaptor can execute a function like CONCAT or DATEDIFF? Choose 2 answers. In a Set Values Action in a Value field. In a DataRaptor in an Output Tab Output JSON Path. In a DataRaptor Action in an Input Parameters value field. In a Remote Action in an Additional Output value field.

A healthcare company wants to enable its subscribers to add, edit, or delete dependents related to their policy Community portal. The developer on the project decides to use an OmniScript. How should the developer configure the OmniScript to provide this functionality?. Use an Edit Block element configured with Remote Actions. Use an Edit Block element configured with SOQL statements. Use an Input Block element and a DataRaptor Post Action element. Use a Text Block element and a Remote Action element.

A developer is building an OmniScript and needs to save to Salesforce and to an AWS Order Management system. Which OmniScript element could save all of this data?. DataRaptor Post Action. HTTP Action. Integration Procedure Action. DataRaptor Load Action.

A developer needs to create a DataRaptor to retrieve the name of an account for a contact. Following best practices, how should a developer configure the extraction steps?. Define an extraction step for the Contact object and set the Extract JSON Path to Contact Account.Name. Define extraction steps for the Contact and the Account objects, and set the Extract JSON Path to Contact Account.Name. Define extraction steps for the Contact and the Account objects, and set the Extract JSON Path to Account.Name. Define an extraction step for the Account object, and set the Extract JSON Path to AccountContact.Name.

A developer configure a Flexcard with a DataRaptor data source that uses the params.id as an input. When the developer clicks Views Data on the FlexCard, valid data displays. However, when the developer previews the layout, the FlexCard does not display. What could cause this error? Choose 2 answers. The Data Node field for the FlexCard is empty. The RecordId in the Test Data Source settings is for the wrong record type. The attribute haven't been configured to pass the data to the fields. There is no Salesforce record for the FlexCard based on the RecordId in the layout's Test Data Source Settings.

A developer is creating a FlexCard for a new Community page. The FlexCard will display case information along with action to close the case and update the case. And it will be styled using the Community's theme. What must be developer do to configure the FlexCard for deployment in a Community?. Add the FlexCard's API name to FlexCard Player component. Set the Target property in publish Options to Communitypage''. Configure the Component visibility in the custom Component. Set the Developer property in Card Configuration to ''Community''.

A developer needs to transform contact data into a JSON array. INPUT JSON { "Contact":{ "Name":"John Doe", "Phone":"34324234233", "Birthdate":"1990-11-12" } } OUTPUT JSON { "Contact": [ { "Name":"John Doe", "Phone":"34324234233", "Birthdate":"1990-11-12" } ] } Given the input JSON shown above, what are two ways a developer could configure a DATARaptor transform to achieve the expected Output JSON? Choose 2 answers. Set the Input JSON Path as LIST(Contact) and the Output JSON Path as Contact. Set the Input JSON Path as Contact and the Output JSON Path as LIST(Contact). Use a formula LIST(Contact), and add the output of the formula as the input in the Transform tab. Set the Input JSON Path as Contact, the Output JSON Path as Contact, and Output Data Type as List.

A developer needs to change some field labels on a FlexCard. The FlexCard is currently deployed to production. The developer that the best course of action is to version the FlexCard rather than cloning it. Which factor would lead the developer to this decision?. The new version of the FlexCard will be used in a new Console, and the current version of the FlexCard should remain unchanged. Another team member is developing new action, fields and styling for the current version of the FlexCard. The new and current versions will be displayed together on the same target. All instance of the FlexCard must be updated with the changes.

A developer needs to configure a calculation procedure to calculate the sum of the entire BasePrice. What is the most efficient way for the developer to meet this requirement?. Create a Postprocessor apex class to calculate the sum. Add an Aggregation Step as SUM (BasePrice). Add A Calculation Step as SUM (BasePrice). Create a Preprocessor class to calculate the sum.

In a calculation procedure, what is required for the output of a calculation step to be used in an aggregation step?. It must be included in constants. It must be a matrix lookup step. It must be a calculation step. It must be included in the calculation output.

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?. DocuSign Envelope Action. PDF Acwm. DocuSign Signature Action. Email Action.

Which two of these options can a developer use to retrieve data from a Salesforce object? Choose 2 answers. A DataRaptor Load Action. A DataRaptor Extract Action. A Lookup Input Element. A DataRaptor Post Action.

A developer is configuring an integration Procedure Action in an OmniScript. The Omniscript needs a JSON response from the Integration Procedure but does not need to wait for the response for the user to proceed. Which feature should the developer enable?. Toast Completion. Use Future. Invoke Mode Fire and Forget. Invoke Mode Non-Blocking.

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?. In the DataRaptor Output tab, select the Output Data Type of that field to Integer. In the DataRaptor Output tab, enter the default value as 0 on the field. In the DataRaptor Extract tab, set the Input Data Type field to Integer. In the DataRaptor Formula tab, define a formula using the function TOINTEGER and use the formula as output.

A developer is building an OmniScript and needs to retrieve data from Salesforce and from an on-premises billing database. Which two OmniScript elements could retrieve this data? Choose 2 answers. Navigate Action. DataRaptor Extract Action. Remote Action. Response Action.

A developer creates an Integration Procedure with a Set Values and a DataRaptor Extract Action that requires AccountId as a key. When the developer previews the Integration Procedure, the developer enters the AccountId correctly and execute the Preview. The developer sees the data extract by the DataRaptor in the Debug Log, but the response is empty. What is the likely cause of this issue?. The DataRaptor Action did not have the add response to Response JSON property set to true. The Response cannot be previewed directly. A Response Action was not added to the integration Procedure. The AccountId used for the preview is invalid.

Users receive an APEX CPU limit Exceeded error when running an OmniScript in a Salesfoce Community. The OmniScript includes an Integration Procedure that contains two DataRaptors. Which two Location should the developer check to troubleshoot the issue? Choose 2 answers. Script configuration. Community logs. DataRaptor configuration. Action Debugger.

In an Integration Procedure, a developer needs to perform a multi-step calculation on every element of an array. Based on best practices, what two methods are recommended? Choose 2 answers. Use a List Action to merge the array elements together. Use a Calculation Action to call a Calculation Procedure. Use a Set Values Element inside a Loop Block. Use a Matrix Action to call a Calculation Matrix.

A developer has an existing DataRaptor Load that insert Contact records with inputs as LastName and firstName. The DataRaptor works as expected when previewed. The developer creates an integration Procedure to test the DataRaptor and is using a SetValues element in the Integration Procedure to set the first name and last name for the contact record. The DataRaptor and Integration Procedure are set up as shown in the exhibit below. When the developer executes the Integration procedure in preview, the following error message displays: Required fields are missing: [last Name]'', How should the developer address this issue?. SetValuesContactDetails should have been added to Additional input of DataRaptor Post Action in Integration Procedure. The Set values Action Keys should include the DataRaptor Post Action element name path, e,g LoadContactDetails, lastname. The DataRaptor Post Action in the integration procedure should have been executed before the Set Values Action. The valid field names should be added in the Domain object field in the DataRaptor.

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?. Populate the Lookup object and Lookup fields. Check the Upsert key and is required for Upsert checkboxes on the Account id field. Check the Upsert key checkbox on the Account Status field. Check Overwrite Target for all Null input checkbox on the Account id field.

A developer needs to create a list of cases for an account in a single Datable in a FlexCard. Like the one shown below. How can the developer configure the FlexCard to display the case records in this way?. Enable the record Looping feature on the data table elements. Select the Repeatable Mode property on the data table elements. Enable the Repeat Records feature on the FlexCard Setup tab. Disable the Repeat Record feature on the FlexCard setup tab.

In an OmniScript, a developer needs to configure a Disclosure element to require user input only if the user already checked a Non-Disclosure Agreement Checkbox. How should the developer configure the conditional view to meet this requirement?. Show element if true. Disable read only if true. Set element to optional if false. Set element to require if true.

An OmniScript updates data from one Salesforce record, but when it completes, only some of the data is updated in Salesforce. A DataRaptor Load saves the data. What error could cause this behavior? Choose 2 answers. The fields that are not updated are read only in Salesforce. In the DataRaptor Load, in the Preview tab, the Record is from the wrong record type. The input JSON paths In the DataRaptor Load do not match the JSON from the OmniScript. ContextId is misspelled in the merge code that passes the Recordld to the DataRaptor.

A developer creates an OmniScript to update billing information. After analyzing the different types of customer interactions that occur at the company, the developer determines updating billing information should be included in the majority of customer interactions, which are represented by more than 20 different FlexCards. What is the most efficient way for the developer to configure the action that invokes the OmniScript?. As an OS Action. As a Custom Action. As an OmniStudio Action. As a Lightning Action.

A developer needs to display read-only contact information in a OmniScript. The developer will format the information as a table, using merge codes to dynamically include first name, last name, street address, state, postal, code, and country from the data JSON. Which OmniScript element should the developer use to meet this requirement?. Rich text Area. Text area. Text Block. Edit Block.

An OmniScript displays data from an API using Integration Procedure, but some of the data is missing. Which two configuration errors could cause this? Choose 2 answers. The element name for the missing data does not match the JSON node key in the Integration Procedure Response. The Integration Procedure Preview Input Parameters do not match the JSON sent from the OmniScript. The JSON sent from the Integration Procedure Action does not match any of the Original Input for the Integration Procedure. The missing data is trimmed in the Integration Procedure Action Response JSON Path.

Refer to the exhibit below. What is the merge code needed for this Integration Procedure structure to pass a CaseData node from the HTTP Action's output to the DataRaptor Transform Action?. %HTTPGetDetails:CaseData%. %DRXformCaseData:CaseData%. {{ HTTPGetCaseDetails:CaseData}}. {{CaseData}}.

A developer builds a new OmniScript. It contains a Set Values element with a ContextId key/value pair that was used during testing. What should the developer do before moving the OmniScript to a production org?. Update the ContextId value to specify an id from the Production org. Add a Show/Hide condition on the Set Values element. Delete or Deactivate the Set Values element. Deactivate the contextId key/value pair.

A developer needs to limit the of a DataRaptor Extract to a maximum of one result. How should the developer configure this?. Define a formula with the Filter function. Use a Custom Output Type when creating the DataRaptor. Use the LIMIT filter on the Extract definition. Set the Limit Property on the Action that calls the DataRaptor Extract.

What should a developer's first step be when troubleshooting whether a DataRaptor Extract is retrieving data?. Go to the Lightning Console and reload the page to test. Go to the PREVIEW tab In OmniScript to test. Deactivate the card and layout, and go to the PREVIEW tab for the card to test. Add a key/value pair in the DataRaptor to test it.

A developer creates a FlexCard with five state elements. Four of the states have a condition. To test the FlexCard, the developer previews it using sample data that causes two of the states to have true conditions. In this scenario, how will the developer know which state will display?. The first state with true conditions sequence closest to the top of the FlexCard canvas will display. The first state with true nested condition, regardless of sequence in the FlexCard canvas, will display. The state sequenced first in the FlexCard canvas will display. The first state with a true AND condition, regardless of sequence in the FlexCard canvas, will display.

What two advantages does a DataRaptor Turbo Extract have over a standard DataRaptor Extract? Choose 2 answers. It populates data in PDF and DocuSign format. It is easier to configure. It has better performance at runtime. It supports complex field mappings.

The OmniScript must retrieve device details stored in the Asset object and then call an external system to send troubleshooting commands via REST API to the device. Which two OmniScript element should the developer use to configure this functionality?. DataRaptor Extract Action. REST API Action. Navigation Action. SOQL Action. HTTP Action.

A developer is creating an OmniScript that provisions trail orgs to their customers. The following text block in the Omniscript uses a merge code to display the ID for the new trail org: To %sDetails: Customer|0: ID$. To %Details: Customer|1: ID%. To %%sDetails: Customer|0: ID%%. To %Details: Customer|n: ID%.

A developer creates a Flexcard that displays a contact’s mailing address and passes the contact’s postal code to a child FlexCard. When configuration textelements in the child FlexCard, what syntax should a developer use to refer to the contact’s postal code?. {Postalcode}. {Parent.postalcode}. {Records.postalcode}. {Params.postalcode.

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. Set the Timeout property on the HTTP Action in the Integration Procedure. Configure a Remote action with timeout settings of 120000. Check the Chainable checkbox on the integration procedure Action in the OmniScript. Check the Chain on Step Check on the HTTP Action in the Integration Procedure.

A developer needs to configure a DataRaptor to retrieve data from a single object.The structure of the output data does not need to be changed. Following best practices, which type of DataRaptor should the developer use?. DataRaptor Transform. DataRaptor Extract. DataRaptor Load. DataRaptor Turbo Extract.

A developer needs to create a list of cases for an account in a single Datatable in a FlexCard, like the one shown below. How can the developer configure the FlexCard to display the case records in this way?. Enable the Repeat Records feature on the FlexCard setup tab. Enable the Record Looping feature on the data table elements. Disable the Repeat Records feature on the FlexCard setup tab. Select the Repeatable Mode property on the data table elements.

A developer needs to use the COUNTIF function to process data entered by the user in an OmniScript. The output of the function needs to be displayed to the user immediately in the current step. Based on best practice, what element should the developer use this function in?. A Set Values element. A Range element. A Formula element.

A developer is creating an OmniScript that provisions trial orgs to their customers. The following text block in the OmniScript uses a merge code to display the ID for the new trial org: Welcome to Salesforce! Your ID is %Details:Customer|0:ID% During testing, the developer notices that the ID does not display. The data JSON is structured as shown below. How should the developer correct the merge code in order for the ID to display?. To %Details:Customer|n:ID%. To $Details:Customer|0:ID$. To %Details:Customer|1:ID%. To %%Details:Customer|0:ID%%.

A developer is building an OmniScript and needs to retrieve data from many fields in a Salesforce record. Which OmniScript element does this?. Lookup. HTTP Action. Select. DataRaptor Extract Action.

A developer creates an OmniScript to display FirstName, LastName, and BirthDate of a contact using a Type Ahead Block. The DataRaptor used in the Type Ahead has been tested and fetches the correct data. When previewing the OmniScript, the developer enters a name in the Type Ahead and makes a selection of a contact from the list. However, the text fields FirstName, LastName. and BirthDate are not getting populated with the data. Refer to the exhibit below. What is the reason that the fields fail to display the fetched data?. Use Data JSON is not selected in the properties of the Type Ahead Block. The Typeahead Key is not in the correct format. Lookup Mode is not selected in the properties of the Type Ahead Block. FirstName, LastName, and BirthDate are not placed inside the Type Ahead Block.

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 web service. How should the developer configure the Integration Procedure to meet this requirement?. Use a DataRaptor Transform to convert JSON to XML. Use a Remote Action that calls the XMLStreamReader class. Use a DataRaptor Extract and check the XML checkbox on the Output JSON Path. Use a Remote Action that calls the XMLStreamWriter class.

A developer is building a DataRaptor Load for an Integration Procedure used in an OmniScript. Based on best practices, how should the developer configure the Input JSON?. Build the Input JSON node by node in an editor. Build the Input JSON node by node in the DataRaptor Designer. Copy the Input JSON from the OmniScript {Data} modal. Copy the Input JSON from the DataRaptor Action Debug node.

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 Remote Action?. ResponseCart. ResponseCartDebug. FetchCartDebug. FetchCart.

On a FlexCard canvas, several fields display with Salesforce data, but one of the fields shows only the label. What could cause this?. In the FlexCard state, the Field type for the field does not match the type in the Salesforce record. The Field name in the FlexCard state does not match the DataRaptor Extract's Output JSON Path name. There are No Test Data Test Parameters configured. In the Setup Panel, {recordId} is misspelled in the Data Source Input Map.

A communications provider wants to enable their customers to troubleshoot mobile devices using a self-service portal. The developer builds an OmniScript to meet this requirement. The OmniScript must retrieve device details stored in the Asset object and then call an external system to send troubleshooting commands via REST API to the device. Which two OmniScript elements should the developer use to configure this functionality?. SOQL Action. HTTP Action. REST API Action. DataRaptor Extract Action. Navigate Action.

Refer to the exhibit below. What JSON code correctly represents the step in the OmniScript Structure panel shown’. "Step1": { "Block1": { "Text1" "Text", "Telephone1": "1234567890"}, "Block2": { "Checkbox1": false, "Block3": { "Multi-select1": "Value A;value B" }}}. "Step1": {"Block1": {"Text1": "Text" }, "Block2": ("Telephone 1": "1234567890", "Checkbox1": false, "Block3": { "Multi-select1": "Value A;Value B" }}}. "Step1": {"Block1": { "Text1": "Text". "Block2": { "Telephone1": "1234567890", "Checkbox1": false }}, "Block": { "Multi-select1": "Value A;Value B" }}. "Step1": {"Block1": { "Text1": "Text", "Telephone 1": "1234567890", "Block2": { "Checkbox1": false }}, "Block3": { "Multi-select1": "Value A;Value B"}}}.

A developer creates a new FlexCard to display customer data and actions, such as updating billing information and changing the primary 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?. There are no test parameters configured. The field is null in the Salesforce record. {recordId} is misspelled in the Data Source Input Map. The fields have exceeded the maximum number allowed on the card.

Refer to the exhibit below. What JSON from the DRGetContactDetails action would display all six values correctly in the OmniScript structure shown? BlkCases is a Repeat Block, and the names of the elements are the same as the label names without spaces. "BlkCases": [{ "CaseSubject": "Cannot track our order.", "CaseNumber":"00001002" }, { "CaseSubject": "Billing Status", "CaseNumber":"00001004" }], "ContactPhone" : "(212) 189-8979", "ContactName": "Leanne Tomlin". { "Contact": { "Name" : "Leone Tomlin", "CellPhone" : "(2321) 177-66100" }, "CaseSubject" : "Cannot track your order", "CaseNumber" : "00021554" }, { "Contact": { "Name" : "Leone Tomlin", "CellPhone" : "(2321) 177-66100" }, "CaseSubject" : "Billing status", "CaseNumber" : "00021553" } }. { "Case" : [ { "CaseSubject": "Cannot track your order", "CaseNumber": "00021554" }, { "CaseSubject": "Billing status", "CaseNumber": "00021553" } ], "ContactName" : "Leone Tomlin", "ContactCellPhone" : "(2321) 177-66100" }. { "Case" : [ { "CaseSubject": "Cannot track your order", "CaseNumber": "00021554" }, { "CaseSubject": "Billing status", "CaseNumber": "00021553" } ], "Contact" : { "Name" : "Leone Tomlin", "CellPhone" : "(2321) 177-66100" } }.

What OmniStudio tool pre-populates the data in a PDF used by an OmniScript?. A Data Raptor Extract. A Data Raptor Transform. A DataRaptor Load. A SOQL Query.

Refer to the exhibit. What is the Output?. 12.99,13.99. null. 12.99. 13.99.

A developer is building an OmniScript and needs to retrieve data from a single field in a Salesforce record. Which OmniScript element does this?. HTTP Action. Lookup. Select. DataRaptor Post Action.

Why would you version an Integration Procedure instead of cloning it?. The new Integration Procedure will be used independently. The new Integration Procedure is Chainable. The new Integration Procedure will replace the existing one. The new Integration Procedure uses a Cache Block.

A customer has a new Engagement Manager who is going to be the new Primary Contact for the Account. What type of mapping does a DataRaptor Load use to create the new contact and then add it as the new Primary Contact?. Lookup Key. Relationship Query. Lookup Mapping. Linked Mapping.

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 Data Node?. {recordId}. {Params.records}. {records}. {records[0]}.

Refer to the following row-versioned decision matrix. The developer needs to delete the row that contains the Code CA-SF. If the developer deletes that row in Version 3, what is the result?. The row is deleted in all versions. The row is deleted in Versions 2 and 3 but will remain in Version 1. The row is deleted only in Version 3. The row is deleted in Version 3 and Version 1.

Refer to the exhibit below. In this Integration Procedure structure, what Send JSON Path would be used to send the output of the Action1 element to a Remote Action?. Action1:BlockB:BlockA. BlockA:BlockB:Action1. Action1.BlockB.BlockA. BlockA.BlockB.Action1.

Refer to the exhibit below. A developer has configured an Integration Procedure element with SEND/RESPONSE TRANSFORMATIONS as shown. Alternatively, how could the developer configure Additional Input to send exactly the same data? Assume that the developer checked Send Only Additional Input. Key Value - SecondaryAccount DRExtractAction:Account. Key Value - SecondaryAccount %DRExtractAction:Account%. Key Value - DRExtractAction:Account SecondaryAccount. Key Value - %DRExtractAction:Account% SecondaryAccount.

A developer needs to build a DataRaptor Transform to send current weather to both an OmniScript Card Layout. Which of these samples would be valid for the Expected Output JSON?. Option A. Option B. Option C. Option D.

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?. Check the Enable Cancel checkbox in the Setup tab under Cancel Options. Add a navigation Action inside each step and set the Component name to ‘’Cancel’’,. Add a navigation Action outside each step and set the Element Name to ‘’Cancel’’,. Add a navigation Action inside each step and set the Element Name to ‘’Cancel’’,.

Refer to the exhibit below. What is the merge code needed for this Integration Procedure structure to pass a CaseNumber node from the DRReadCase DataRaptor Extract Action to the HTTP Action’s HTTP Path URL?. %HTTPGetCaseDetails:CaseNumber%. {{DRReadCase.CaseNumber}}. %DRReadCase:CaseNumber%. {{CaseNumber}}.

Which calculation procedure version in the list would execute on 2/15/2020 at 12:00 PM?. Version Number 1. Version Number 2. Version Number 3. Version Number 4.

Refer to the exhibit below. In this Integration Procedure structure, what Send JSON Path would you use to send the output of the ActionZ element to a Response Action?. BlockX.BlockY.ActionZ. ActionZ.BIockY.BlockX. BlockX:BlockY:ActionZ. ActionZ:BlockY:BlockX.

When launching an OmniScript from an action on a FlexCard, the OmniScript displays, but no Salesforce data is populated. Which two errors could cause this behavior? Choose two. There is no active version of the OmniScript. In the DataRaptor Extract Action, the Input Parameters Filter Value is misspelled. There is no active version of the DataRaptor Extract. The Id Field for Actions in the FlexCard is blank.

Which of these checkboxes helps prevent a DataRaptor Load from creating duplicate records?. Upsert Key. Is Disabled. Is Lookup. Is Required For Upsert.

An OmniScript displays data from an API using an Integration Procedure, but some of the data is missing. Which two configuration errors could cause this? (Choose two.). The missing data is trimmed in the Integration Procedure Action Response JSON Path. The JSON sent from the Integration Procedure Action does not match any of the Original Input for the Integration Procedure. The element name for the missing data does not match the JSON node key in the Integration Procedure Response. The Integration Procedure Preview Input Parameters do not match the JSON sent from the OmniScript.

Which context variable is set in the card designer and allows access to any property in scope plus the {{payload}} variable?. Attributes {{attrs}}. Page parameters {{params}}. Session variables {{session}}. Object {{objj}}.

How can a Card Layout be embedded within another Card?. Use an angular filter in a specific field in a card state. Use the Add Layout button in zone layout. Use a session variable on a card. Use a card state with a Layout condition.

End users launch an OmniScript to request a change in their service from a console. You need them to be able to confirm the changes were made on the console afterwards. Which OmniScipt element will allow you to do this?. Submit action. Post to object action. Navigate action. Remote action.

What does a response action do in an integration procedure?. It calls an APEX class and method. It controls where the user navigates after the integration procedure is completed. It extract and transform data from salesforce. It returns data to whatever called the integration.

Based on the best practice for troubleshooting what should you always do first when testing if the data source is working in the OmniScript designer?. Verify the extract output paths are correct for the DataRaptors. Add the ContextID to the {data} model. Add the params.id to the test data source settings. Verify the target URL for any actions are complete and correct.

Report abuse