dp_format_var_for_display name valueWhat it does:
Formats the value of $name for the type of data that we are expecting. If there is no formatting to do, returns $value. Otherwise, returns a formatted $value.Defined in: /web/philip/tcl/data-pipeline-defs.tcl
Source code:
set type [dp_variable_type $name]
switch -exact $type {
money {
return [util_commify_number $value]
}
}
return $value