0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

フローでの数式

Last updated at Posted at 2022-05-06

この方法が普通のやり方かもしれん。

Formula issue in the flow


Flowでフィールドを参照する場合は、{!}で囲む必要があります。したがって、Conveyor_Length_2__cは{!Conveyor_Length_2__c}になります

+フローのトリガー条件のカスタムラベルについて

メールのSubjectには先頭に何か違う文字が入っているので、contain関数で含まれているかでチェックする

Flow is not triggered because of ' in the text - how to fix?

数式を使った条件でレコードを更新する

ワークフローやプロセスビルダーのように開始時点で数式によってトリガーを制御できそうなんですが、実はできません。
別途数式のリソースを作って決定ロジックで判断させて分岐する必要があるみたいです。

image.png

全体像

image.png

必要なリソース

image.png

数式のリソースの中に判定に使う式を書きます。
書いてすぐに数式の構文チェックがされないので、非常に面倒です。

今回の数式です。

OR(
AND(
NOT(ISNEW()),
ISCHANGED({!$Record.Supplier_id__c})
),
AND(
ISNEW() ,
ISBLANK({!$Record.Supplier_code__c})
)
)

その他の回答

0
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?