why maps Activiti the Java datatype double to the Oracle datatype NUMBER(*,10) instead to the Oracle datatype NUMBER? With the current mapping the value 1e-11 becomes to 0 if stored. This concerns the three tables ACT_HI_DETAIL, ACT_HI_VARINST, ACT_RU_VARIABLE.
In our application we first mapped double columns to Oracle's datatype BINARY_DOUBLE. But unfortunately this type is not supported by Oracle's EXP and IMP tools. Therefore we use the good old datatype NUMBER now.