
SharathK.44425 (Customer) asked a question.
I am trying to execute a If/Else condition in the mapping String.toLowerCase(appuser.var1)==4 ? "1082395" : "1569263" where it only returns "1569263". The expected result is var1==4 it should return "1082395" and var1==8 it should return "1569263".

This is the right expression for if/else condition String.toLowerCase(appuser.var1) == "4" ? "1082395" : String.toLowerCase(appuser.var1) == "8" ? "1569263" : null