1

I have an orchestration that calls another orchestration.

Is it possible to get the orchestration name or id of the parent in the calling orchestration in an Expression shape?

Dijkgraaf
  • 11,049
  • 17
  • 42
  • 54
Balatharan
  • 125
  • 13

2 Answers2

1

Out of the box is not possible, so you would need to pass it as a parameter from your calling orchestration.

There is the option to pick up the name of the orchestration like so: Microsoft.XLANGs.Core.Service.RootService.Name. However, when calling an orchestration and using this method, you will get the name of the CALLING orchestration in your CALLED orchestration.

zurebe-pieter
  • 3,246
  • 21
  • 38
0

You can always pass an identifier for the caller as a Parameter.

Johns-305
  • 10,908
  • 12
  • 21