[2025年最新] 高合格率な最新OmniStudio-DeveloperテストノートとOmniStudio-Developer高合格率な試験ガイドを試そう
OmniStudio-Developer実際の問題アンサーPDFには100%カバーリアル試験問題
質問 # 62
Refer to the exhibit.
The card layout uses an integration Procedure as a data source. The cards use the layout data source.
Which JSON data structure supports this card layout and follows best practices?
A)
B)
C)
- A. Option B
- B. Option A
- C. Option C
正解:C
質問 # 63
A customer sets up to LWC Omniscripts, one embedded into another. Account is set in a Set Values element in the parent Omniscript.
The AccountId set in the parent Omniscriptis 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.

- A. Both parent and embedded OmniScripts have the same element name for the Set values element.
- B. The flag passDataJSON in the parent OmniScript in not configured correctly.
- C. A developer failed to include a Navigation Element to pass data from the parent OmniScript.
- D. The LWC PubSub Message flag in the Set Values action of theparent has not been set.
正解:D
質問 # 64
A customer sets up two LWC OmniScripts, one embedded into another. AccountId is set in a Set Values element in the parent OmniScript. The Accountid set in the parent OmniScript is used to set another Set values element ContextAccountId in the emvedded OmniScript. The embedded OmniScript is activated.
While previewing the OmniScript flow from the parent, it is found that Account I set correct in the parent OmniScript. However, ContextAccount 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.
- A. A developer failed to includea Navigate Action Element to pass data from the parent OmniScript.
- B. The flag passData.JSON in the parent OmniScript in not configured correctly.
- C. Both parent and embedded OmniScripts have the same element name for the Set Values element.
- D. The WLC PubSub Messge flag in the Set Values action of the parent OmniScript has not been set.
正解:D
解説:
The LWC PubSub Message flag in the Set Values action of the parent OmniScript enables the parent OmniScript to send data to the embedded OmniScript using a custom event. If this flag is not set, the data will not be passed to the embedded OmniScript
質問 # 65
A healthcare company wants to enable its subscribers to add, edit, or delete dependents related to their policy via their Community portal. The developer on the project decides to use an OmniScript.
How should the developer configure the OmniScript to provide this functionality?
- A. Use an Edit Block element configured with Remote Actions.
- B. Use a Text Block element and a Remote Action element.
- C. Use an Edit Block element configured with SOQL statements.
- D. Use an Input Block element and a Data Mapper Post Action element.
正解:A
解説:
In OmniStudio, the Edit Block element is purpose-built for allowing users to dynamically add, edit, or delete rows of related data, such as dependents under a policy. To save these changes, Remote Actions (typically backed by Apex or API) are used to process each record operation (Create/Update/Delete).
* A. Use an Edit Block element configured with Remote Actions - Correct. This is the recommended and most scalable way to support CRUD operations in OmniScripts for collections (e.g., dependents).
The Edit Block provides UI-level support, while Remote Actions handle back-end interaction with Salesforce or external systems.
Incorrect Options:
* B. Text Block is for display purposes and cannot manage data input or backend actions.
* C. Input Block elements do not support row-level add/edit/delete functionality as Edit Blocks do.
* D. SOQL is a read-only query language and cannot be used to update or delete records directly within an OmniScript.
:
Salesforce OmniStudio Guide # OmniScript Edit Block Element
OmniStudio Best Practices # CRUD Operations in OmniScripts
質問 # 66
CORRECT TEXT
The card layout below has an Integration Procedure as a data source. The cards use the layout data source.
Which JSON data structure below supports this card layout and uses best practices.
- A. "Contact": [
{
"CellPhone": "(212) 154-8562",
"Name": "Edward Stamos"
},
t
"CellPhone". "(650) 156-1102",
"Name": "Howard Jones"
} - B. ""ContactCellPhone: "(212) 154-8562",
"ContactName": "Edward Stamos",
"AccountPhone": "2221546450",
"AccountName": "Acme"
I
{
"ContactCellPhone: "(650) 156-1102",
"ContactName": "Howard Jones",
"AccountPhone": "2221546450",
"AccountName" "Acme"
}
]
正解:A
質問 # 67
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 tosend exactly the same data? Assume that the developer checked Send Only Additional Input.
- A.

- B.

- C.

- D.

正解:B
解説:
The Additional Input property allows the developer to specify additional input parameters to be sent to the Integration Procedure element. The input parameters can be specified as a JSON object or as a list of key-value pairs. If the developer checked Send Only Additional Input, then only the input parameters specified in Additional Input are sent, and the SEND/RESPONSE TRANSFORMATIONS are ignored. Therefore, the developer needs to specify the same input parameters as in the SEND/RESPONSE TRANSFORMATIONS in Additional Input. Option C shows how to do this using a JSON object with two properties:
"DBExtractAction:Account" and "DBExtractAction:SecondaryAccount". The values of these properties are the same as in the SEND/RESPONSE TRANSFORMATIONS.
質問 # 68
Refer to the exhibit below. What JSON from the DRGetContactDeteils action would display all six values correctlyshown? BlkCases is a Repeat Block, and the names of the elements are the same as the label names without spaces.
- A.

- B.

- C.

- D.

正解:B
解説:
According to the OmniScript Data JSON page, the OmniScript structure JSON defines the data elements and their properties that are used in an OmniScript. The exhibit shows an OmniScript structure JSON with six elements: ContactName, ContactPhone, ContactEmail, CaseNumber, CaseSubject, and CaseStatus. The DRGetContactDetails action is a DataRaptor Extract action that retrieves data from the Contact and Case objects in Salesforce. The BlkCases element is a Repeat Block that displays a list of cases related to the contact. Therefore, the JSON from the DRGetContactDetails action that would display all six values correctly shown is option A, which has the following structure:
The other options have different structures that do not match the OmniScript structure shown.
質問 # 69
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'sknownperformance issues, which configuration should be used to implement the call to the external system?
Choose 2 answers
- A. Check the Chainable checkbox on the integration procedure Action in the OmniScript
- B. Check the Chain on Step Check on the HTTP Action in the Integration Procedure
- C. Configure a Remote action with timeout settings of 120000
- D. Set the Timeout property on the HTTP Action in the Integration Procedure
正解:B、D
解説:
Explanation
Setting the Timeout property on the HTTP Action in the Integration Procedure allows the developer to specify how long to wait for a response from the external system before timing out. Checking the Chain on Step Check on the HTTP Action in the Integration Procedure allows the developer to chain multiple HTTP Actions together and execute them sequentially. Configuring a Remote action with timeout settings of 120000 is not necessary, as it is already done by default in OmniStudio. Checking the Chainable checkbox on the integration procedure Action in the OmniScript has no effect on calling an external system.
質問 # 70
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. An HTTP Action Element
- B. A guided workflow
- C. A DataRaptor Transform
- D. An integration Procedure
正解:C
質問 # 71
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?
- A. Set the class'' collapsible'' on the block element
- B. Use a Datatable element
- C. Set the collapsible property on the block element
- D. Use a conditional FlexCard State
正解:D
質問 # 72
Which two of these options can a developer use to retrieve data from a Salesforce object?
Choose 2 answers
- A. A Lookup Input Element
- B. A DataRaptor Extract Action
- C. A DataRaptor Load Action
- D. A DataRapt or Post Action
正解:A、C
解説:
A DataRaptor Load Action can be used to retrieve data from a Salesforce object by specifying the object name, fields, and filter criteria. A Lookup Input Element can be used to retrieve data from a Salesforce object by allowing the user to search for a record using a lookup field
質問 # 73
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 dat
a. What error could cause this behavior?
Choose 2 answers
- A. In the DataRaptor Load, in the Preview tab, the Record is from the wrong record type.
- B. ContextId is misspelled in the merge code that passes the Recordld to the DataRaptor
- C. The input JSON paths In the DataRaptor Load do not match the JSON from the OmniScript.
- D. The fields that are not updated are read only in Salesforce.
正解:C、D
質問 # 74
A developer needs to transform contact data into a JSON array.
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
- A. Set the input JSON Path as Contact and the OutPut JSON Path as List (Contact)
- B. Use a formula LIST(Contact), and add the output of the formula as the input in the Transform tab.
- C. Set the Input JSON Path as Contact the out JSON Path as contact and output Data type as List.
- D. Set the Input JSON path as List(Contact) and the OutputJSON Path as Contact.
正解:C、D
質問 # 75
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 text elements in the child FlexCard, what syntax should a developer use to refer to the contact's postal code?
- A. {Records.postalcode}
- B. {Params.postalcode}
- C. {Postalcode}
- D. {Parent.postalcode}
正解:B
質問 # 76
Refer to the exhibit.
The card layout uses an integration Procedure as a data source. The cards use the layout data source.
Which JSON data structure supports this card layout and follows best practices?
- A.

- B.

- C.

正解:C
解説:
The JSON data structure in option C supports the card layout and follows best practices. It has a list of objects, each representing a product, with the properties "ProductCode", "ProductName", "ProductDescription", and
"ProductPrice". These properties match the fields in the card layout. The JSON data structure also follows the naming convention of using camel case for property names. The JSON data structures in options A and B do not match the fields in the card layout and do not follow the naming convention.
質問 # 77
A customer sets up two LWC OmniScripts, one embedded into another. AccountId is set in a Set Values element in the parent OmniScript. The Accountid set in the parent OmniScript is used to set another Set values element ContextAccountId in the emvedded OmniScript. The embedded OmniScript is activated.
While previewing the OmniScript flow from the parent, it is found that Account I set correct in the parent OmniScript. However, ContextAccount 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.
- A. A developer failed to includea Navigate Action Element to pass data from the parent OmniScript.
- B. The flag passData.JSON in the parent OmniScript in not configured correctly.
- C. Both parent and embedded OmniScripts have the same element name for the Set Values element.
- D. The WLC PubSub Messge flag in the Set Values action of the parent OmniScript has not been set.
正解:D
解説:
The LWC PubSub Message flag in the Set Values action of the parent OmniScript enables the parent OmniScript to send data to the embedded OmniScript using a custom event. If this flag is not set, the data will not be passed to the embedded OmniScript
質問 # 78
A customer sets up to 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.

- A. The LWC PubSub Message flag in the Set Values action of the parent has not been set.
- B. Both parent and embedded OmniScripts have the same element name for the Set values element.
- C. The flag passDataJSON in the parent OmniScript in not configured correctly.
- D. A developer failed to include a Navigation Element to pass data from the parent OmniScript.
正解:A
質問 # 79
......
OmniStudio-Developer試験問題とアンサー:https://www.goshiken.com/Salesforce/OmniStudio-Developer-mondaishu.html
合格できるOmniStudio-Developer試験情報と無料練習テスト:https://drive.google.com/open?id=1s-GXPHw8epKJ37An2zfY2xRiB8zofqQe