Which two fields in an Integration Procedure or Data Mapper can execute a function like CONCAT or DATEDIFF?
Choose 2 answers
Answer : B, C
Functions like CONCAT, DATEDIFF, and IF are supported in value fields where expressions can be parsed at runtime.
B . In a Set Values Action in a Value field -- Correct. The Set Values element supports expression functions in its Value field, allowing for real-time evaluation during IP execution.
C . In a Data Mapper Action in an Input Parameters value field -- Correct. Input Parameters to DataRaptors in Integration Procedures can use expression logic to dynamically compute and pass values.
Incorrect Options:
A . Output JSON Path in DataRaptor is for structural mapping, not function execution.
D . Remote Action Output fields typically receive data, not compute it.
:
Salesforce OmniStudio Developer Guide Expression Functions in Integration Procedures
A company wants to allow agents to send customers a quote for signature. The quote is a document 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 OmniScript?
Answer : A
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 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?
A)

B)

C)

D)

Answer : D
According to theTransform External Data Unit, the Expected Output JSON should match the Output Path of the DataRaptor Transform. In option D, the Output Path is Current:CityState, which matches the Expected Output JSON. The other options have different Output Paths that do not match the Expected Output JSON. Therefore, the correct answer is D.
A developer needs to limit the of a DataRaptorExtract to a maximum of one result.
How should the developer configure this?
Answer : C
Using the LIMIT filter on the Extract definition allows the developer to specify the maximum number of results to return from the DataRaptor Extract. Defining a formula with the Filter function is used to filter the results based on a condition. Using a Custom Output Type when creating the DataRaptor is used to define the structure of the output data. Setting the Limit Property on the Action that calls the DataRaptor Extract has no effect on limiting the results.
A developer needs to limit the output of a Data Mapper Extract to a maximum of one result.
How should the developer configure this?
Answer : A
According to the OmniStudio DataRaptor Extract documentation, if a developer wants to limit the number of records returned, the best way is to set the 'Limit' property on the element or action that is calling the DataRaptor, such as in an Integration Procedure or OmniScript Action.
A . Set the Limit property on the action that calls the Data Mapper Extract -- This is the correct method. The calling context (e.g., OmniScript Action or Integration Procedure) includes a property for setting the limit on query results, which is a recommended and clean method to ensure only one record is retrieved.
Incorrect Options:
B . There is no 'LIMIT' clause within the DataRaptor Extract definition UI or JSON definition itself.
C . Custom Output Type controls the structure, not the quantity of output.
D . The Filter function applies conditional logic, not record count.
:
Salesforce OmniStudio Developer Guide DataRaptor Extract Configuration
Which two in an integration Procedure or DataRaptor can execute a function like CONCAT or DATEDIFF?
Choose 2 answers
Answer : A, D
A Set Values Action in a Value field and a Remote Action in an Additional Output value field can execute a function like CONCAT or DATEDIFF by using the syntax {{function(parameters)}}. For example, {{CONCAT('Hello', 'World')}} or {{DATEDIFF('2021-01-01', '2021-01-31')}}.
A developer needs to use the CONTIF 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?
Answer : C
A formula element allows the developer to define formulas using functions and operators to manipulate data in an OmniScript. The output of the formula element can be displayed to the user immediately in the current step using a display element.The CONTIF function counts how many times a value appears in a list1. A Calculation Action element executes a calculation procedure and returns the output as a JSON object. A Set Values element assigns values to variables or fields in an OmniScript.A Range element defines a range of values for a variable or field in an OmniScript1. Based on best practice, a formula element is the most suitable element to use the CONTIF function in this scenario.