3

If i create an environment variable will it exist in all flows within the execution group? I need to have a value which has to be shared between two flows in the same execution group.

T.Rob
  • 31,522
  • 9
  • 59
  • 103
Smitha
  • 63
  • 4

1 Answers1

2

Nope. The environment variable has its scope set for a particular flow. If you want to share a value between two flows, either you will have to pass it on as a message or use User defined properties (UDP) to set it to all flows in the execution group.

Richie
  • 9,006
  • 5
  • 25
  • 38