Hello Jovan,
Thanks for the prompt response.
If I enabled the equal toggle sign I can only see the pipeline parameters and not the input schema from the mapper. Is there any way to get the Input Schema values into the Account Reference?
It works when I use the pipeline parameters for the condition like
_a == 1 ? “shared/INT”: “Other”
How can I write the condition in the account reference if I have more than One if condition?
if (_a == 1) {
return “shared/INT”;
} else if (_a == 2) {
return “shared/Goods”;
} else if (_a == 3)
return “shared/NAM”;
} return “OtherAcct”