java.lang.NumberFormatException: For input string: " "

Hi all,
We are facing issue with java.lang.NumberFormatException: For input string: " " . the error that we are getting looks like below.

java.lang.NumberFormatException: For input string: " "
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)


Due to this we are getting lot of alert emails from the server. Pls tell me the possible solution for this issue.

thanks

for input string you are giving string like 123absd but it should be number like 123345 should not contain string for any chars .

You must be using some “math” function (eg: pub.math:addInts) in your flow that has at least one mandatory input parameter, which should be a numeric value and since you are passing a blank string its throwing you NumberFormatException.

Thanks for the posts,

Issue has been resolved now. problem was with the empty space which was hard coded. :slight_smile: