OmniStudioのまとめに戻る
OmniStudio 未解決
OmniScript で Apex クラスから依存選択リストの値を入力する方法
Integration Procedure
Have you tried to run the List Action conditionally based on the availability of your Address array? I believe this will not execute the LA and you will not get any error in your IP. Use Execution Condition Formula for this and try to write the formula as ISNOTBLANK(%AddressArrayNodeName%)
Integration Procedure is trying to write an array to the root of the response, but the response is expecting a map. This is causing the error message "Invalid conversion from runtime type List to Map"
The reason why the IP result is null is because the IP is unable to write the response to the output variable. When this happens, the output variable is automatically set to null.
You need to modify your Integration Procedure to write a map to the root of the response instead of an array. You can do this by using the Map.to() function to convert the list to a map.
多言語オムニスクリプト
未整理
OmniScript では、画像をクリック可能なボタンとして使用するオプションは直接提供されていませんが、FlexCard と画像ブロックをアクション リンクと組み合わせて使用することで、この機能を実現できます。
https://help.salesforce.com/s/articleView?id=sf.os_use_images_for_buttons_in_omniscript.htm&type=5
私も同じ問題を抱えていて、数値入力フィールドにマスク #,## を追加しました。うまく機能しているようです。これを行うと "controlWidth" プロパティが機能しなくなるようなので、検証オプションで正規表現を使用して数値を制限することを考えています。
ゲストユーザでエラー
ゲスト ユーザーの Omniscripts でエラーが発生する: 「vlocity_ins__OmniScriptInstance__c を挿入する権限がありません」。
- ゲスト ユーザー/コミュニティ ユーザーの保存された Omniscript オブジェクトに対して、読み取り専用の共有ルールを作成する必要があります。
- 保存された Omniscript オブジェクトのゲスト ユーザー/コミュニティ ユーザー プロファイルには、読み取りと作成、およびフィールド レベルのセキュリティを含むオブジェクト レベルの権限を付与する必要があります。
https://help.salesforce.com/s/articleView?id=000392439&type=1