Hi All,
When using getDBValue with a value like 12.456 it will return the value with a (comma) , instead of (dot). This issue is only in the FSM iOS app.
Example:
var partIdTemp = "12.342";
var partIdDbResult = getDBValue(stringFormat("select part_id from part where part_id = '{0}'",partIdTemp));
Incorrect Result: 12,342 (comma)
Expected Result: 12.342 (dot)