5
3

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 3 years have passed since last update.

salesforceのフローでレコードの複数一括作成方法(forループ作成)

Last updated at Posted at 2020-05-14

フローにはコレクションループはあるのですがforループのようなループ要素がないため
Aオブジェクトのレコードが更新されたときにBオブジェクトのレコードを今月は何件作るというような
動的に件数を指定してレコードを作ることが若干難しい気がします。

たまに使うたびに決定要素と割り当て要素で構築していますが備忘として以下にまとめておきます

###全体像
image.png

流れとしては
①で実行回数を決定して変数に格納
②でループが何回処理されたかを確認して
==①で指定した回数以下であれば
③でループを実行した回数を変数に設定(カウント)
④でループの中で実行したい処理(例えばレコード変数の作成など)を実行
②に戻ります
==①で指定した回数実行していた場合
⑤でループ後の処理を実行(例えばレコードの作成要素を実行)
といった感じです

各要素
image.png

image.png

image.png

作成した変数
image.png

image.png

レコード作成だとこんな感じです
image.png

5
3
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
5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?