A developer needs to display the following information together on oneFlexCard:
* 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?
A. Use aData tableelement
B. Set the class’’ collapsible’’ on the block element
C. Set the collapsible property on the block element
D. Use a conditional FlexCard State
Explanation:
Setting the collapsible property on the block element allows the user to expand or collapse the block as needed. Using a Data table element is not suitable for displaying contact information. Setting the class’’ collapsible’’ on the block element has no effect. Using a conditional FlexCard State requires a condition to be met, not a user choice.
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 2 answers
A. The Id Field for Actions in the FlexCard is blank.
B. There is no active version of the Data Raptor Extract.
C. There isnonactive version of the OmniScript
D. In the DataRaptor Extract Action, the Input Parameters Filter Value is misspelled.
Explanation:
The Id Field for Actions in the FlexCard specifies which field from the FlexCard data source will be used as the record ID for the OmniScript. If this field is blank, the OmniScript will not receive any record ID and will not be able to retrieve any Salesforce data. In the DataRaptor Extract Action, the Input Parameters Filter Value determines how to filter the data based on the record ID. If this value is misspelled, the DataRaptor Extract will not be able to match the record ID and will not return any data.
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, thedeveloper 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?
A. The DataRaptor Action did not have the add response Ro Response JSON property set to true.
B. The Response cannot be previewed directly.
C. A Response Action was not added to the integration Procedure.
D. The AccountId used for the preview is invalid.
Explanation:
According to the OmniStudio Developer Guide, “To return a response from an Integration Procedure, add a Response action as the last action in your Integration Procedure.” Therefore, the correct answer is C.
A developer needs to configure a DataRaptor to retrieve data from a singleobject. Thestructure of the output data does not need to be changed. Following best practices, which type of DataRaptor should the developer use?
A. DataRaptor Transform
B. DataRaptor Extract
C. DataRaptor Load
D. DataRaptor Turbo Extract
Explanation:
A DataRaptor Turbo Extract is a simplified version of a DataRaptor Extract that can retrieve data from a single object without changing the structure of the output data. It is suitable for this scenario because the developer does not need to transform or load the data
A developer needs tocreateDataRaptor to retrieve the name of an account for a contact. Following best practices, how should a developer configure the extraction steps?
A. Define an extraction step for the Contact object and set the Extract JSON Path to Contact Account.Name
B. Define extraction steps for the Contact and the Account objects, and set the Extract JSON Path to Contact Account.Name
C. Define extraction steps for the Contact and the Account objects, and set the Extract 3SON Path to Account.Name
D. Define an extractionstep for the Account object, and set the Extract JSON Path to AccountContact.Name
Explanation:
A DataRaptor Extract can retrieve data from multiple objects using extraction steps and JSON paths. However, if the data is from a single object, only one extraction step is needed. The Extract JSON Path can use dot notation to access related fields from that object, such as Contact.Account.Name.
A developer creates a Flexcardthat displaysa contact’s mailing address and passes the contact’s postal code to a child FlexCard. When configuration text elements in the child FlexCard, what syntax should a developer use to refer to the contact’s postal code?
A. {Postalcode}
B. {Parent.postalcode}
C. {Records.postalcode}
D. {Params.postalcode}
Explanation:
The Params node contains the data that is passed from the parent FlexCard to the child FlexCard. The developer should use {Params.postalcode} to refer to the contact’s postal code in the child FlexCard.
A developer has a requirement to create a child FlexCard that contains all of its parent FlexCard’s records In a Datable How should the developer configure the parent FlexCard’s Node?
A. {Records {0}}
B. {Records}
C. {Params, records}
D. {Recorded}
Explanation:
The Node field for the parent FlexCard should be set to {Records}, which is an array of all the records retrieved by the parent FlexCard data source. This will allow the child FlexCard to access the records and display them in a DataTable.
A developer is troubleshooting an Integration Procedure with two elements: A Remote Action named FetchCart and a Response Action namedResponseCart. In Preview, what JSON node shows the data sent to the Response Action?
A. FetchCart
B. Response
C. ResponseCartDebug
D. ResponseCart
Explanation:
In Preview, the JSON node that shows the data sent to the Response Action is the name of the Response Action itself. In this case, it is ResponseCart. The other nodes show either the input data or the output data of the Integration Procedure.
A company wants to allow agents to send customers a quote for signature. The quote is adocument createdusing 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 OmniScript?
A. DocuSign Envelope Action
B. PDF Acwm
C. DocuSign Signature Action
D. Email Action
Explanation:
A DocuSign Envelope Action can be used to create and send a document for signature using a DocuSign template. The developer can specify the template ID, recipient details, and prefill data in the action configuration
A developer creates a DataRaptor Extract to retrieve data to pass toan externalservice. The external service expects the field value to beaninteger. 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 of that field toInteger.
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 usethe formulaas output.
Explanation:
The DataRaptor Formula tab allows the developer to define formulas using functions and operators to manipulate data. The TOINTEGER function converts a string value to an integer value. The developer can use this function to output the field value as an integer and use the formula as output
Page 3 out of 12 Pages |
Previous |