Jon,
The application VTL is the Apache Velocity project. The version of Velocity being used is found here:
http://velocity.apache.org/engine/1.7/vtl-reference.htmlThe Java classes for the various tools can be found at:
https://velocity.apache.org/tools/1.4/javadoc/org/apache/velocity/tools/generic/package-summary.htmlHere's an example of invoking the Math tool:
######################
## Calculate cubic volume
######################
#set($String="test")##
#set ($MathTool = $String.getClass().forName("org.apache.velocity.tools.generic.MathTool").newInstance())##
#set($result = (${SKUUOM_STG.Packaging Height}* ${SKUUOM_STG.Packaging Length} *${SKUUOM_STG.Packaging Width})/ 1728)##
#set($result = $MathTool.roundTo(2,$result))##
$result##
-Brian
------------------------------
Brian Zupke | Senior Technical Support Engineer
Winshuttle North America | 9099009179
------------------------------