Forum Discussion
Hi Rakesh,
Pipeline parameter values are set to be as string literal, so in the not working the “”.concat(_Primary_Key) is basically just concatenating the “$Emp_ID, $Group_ID”
If you want you can instead use a different approach like split and join…
in your pipeline parameter set the object the you want to concat e.g. Emp_ID|Group_ID
then in the child pipeline you can do a split and join
_Primary_Key.split(‘|’).map((x) => $.get(x,‘’)).join()
hope this helps 🙂