Forum Discussion
It looks like you haven’t made the property an expression. Note that variables are not automatically substituted in strings. You can make the property an expression by pressing the ‘=’ toggle on the left of the property and then changing the value to something like this:
"Your Employee is " + $LAST_NAME + ", " + $FIRST_NAME
Are you passing these values into the triggered task using a POST operation or are you using a query string like was mentioned in another post? If you’re using a query string, the values will be passed in through Pipeline Parameters and you’ll need to reference them with an underscore instead of a dollar sign:
"Your Employee is " + _LAST_NAME + ", " + _FIRST_NAME
Thanks for replying…
I am passing the parameters from a triggered task using post method through postman tool. I have a output parameter FULL_NAME in my oracle proc which is returning correct value.
But not sure how to take input using expression (in input fields) in mapper snap.
Thanks.