dp_format_var_for_display

one of the documented procedures in this installation of the ACS
Usage:
dp_format_var_for_display   name   value
What 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


philg@mit.edu