cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

'$value' is undefined, was not found while evaluating the sub-expression

keerthi_maduru
New Contributor II

Sometimes I get the $value from third party application and sometimes I donโ€™t get based on the filtering, so when I donโ€™t get the $value field from third party application Iโ€™m getting this error in mapper : $value was not found while evaluating the sub-expression
โ€œfailureโ€: "$value is undefined.

How can we fix this? Any suggestions would be helpful.

3 REPLIES 3

dmiller
Admin Admin
Admin

Do you have Null-safe access selected in the Mapper?


Diane Miller
Community Manager

del
Contributor III

Outside of Null-safe access for the overall mapper, if you need field level handling, you might look at the object get() method with further guidance at this community post

keerthi_maduru
New Contributor II

$.get(โ€˜valueโ€™) worked for me. Thanks!