0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

スクリーンフローでのエラー

Posted at

image.png

カスタムボタンのURLを修正することで解決しました

チェックボックスに null 値を割り当てていると思います。 if (checkbox = null) false、チェックボックス、という数式を作成する必要があります。そうすれば、null 値は送信されず、false 値が送信されます

I think it's assigning a null value to the checkbox, you should create a formula that says if (checkbox = null) false, checkbox, that way its not sending a null value its sending a false value

レコードを作成する際に画面表示項目を直接割り当てているのかと思います。

「画面に表示されない = nullの値」のため、TrueかFalseの値しかとらないチェックボックス項目へ画面へ表示されていない項目を割り当ててしまうとエラーになります。

そのため、画面表示項目を直接割り当てるのではなく、下記のような数式を作成して割り当てする必要があります。

IF( OR( 画面表示項目 , NOT( 画面表示項目 ) ) , 画面表示項目 , False )

image.png

別のサイト テンプレートを使用しましたが、その場合は機能しているようです。「独自に構築する」テンプレートでは機能しない理由はわかりませんが、この解決策で問題ありません。

This field is managed in object manager. Your permissions affect the update compatible and create compatible values displayed here, but the running user’s permission control their access at run time.

image.png

Unexpected Error when retrieving 'Case' Layout Information: Layout contains no sections!

I resolved this by providing the profile with read to the field i was using on the screenflow. The error message was very unclear of the actual issue.

画面フローで使用していたフィールドに読み取りを伴うプロファイルを提供することで、これを解決しました。エラー メッセージは実際の問題について非常に不明確でした。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?