【質問】Formアクティビティのボタン連動捜査に関して

以下のようなフォームを作成しました。
実現したいこととしては、
1.メールテンプレートの大分類・中分類・小分類を選択して「メール作成」ボタンを押下
2.選択された内容を基にフォーム右側の件名と本文をデータテーブルから抽出して表示
3.件名や本文を編集。
4.送信を押してメール送信。

2の抽出して表示に関して実現可能でしょうか。
可能であれば、方法など教えていただきたいです。
よろしくお願いいたします。

@jin.ota

You can do it…by using a combination of trigger acope and set form values

So ypur flow look slike below

  1. Show form activity with continue execution checked
  2. Trigger acope activity with trigger as local form trigger and select on click of the compose email button
  3. In the actions use get form values and get the value of which is selected either small,medium or large…and depending on it get the value from datatable
  4. Next use a set form values activity and set the extracted value to the form

Hope this helps

Cheers