メインフローA ー呼び出し→ ワークフローB ー呼び出し→ワークフローC
こういう関係でAで値が決定した変数strAAAを引数とした場合、同じ名前strAAAを使ってワークフローCで参照(あるいは変更)できないのですか?それとも渡し方が間違っているのですか?教えてください。
A)変数strAAAを定義 B)引数strAAAを定義(in/out) C)引数strAAAを定義(in/out)
よろしくお願いします。
Hello @masuda.junichi
You can pass with same names that’s not a problem but it would be better if you create like
For directions in - in_strAAA
For directions out - out_strAAA
For directions In/out - io_strAAA
Regards
Sudharsan