apm_set_parameter

one of the documented procedures in this installation of the ACS
Usage:
apm_set_parameter   element_id   value
What it does:
Sets the value of a specified parameter to the provided value. For multi-valued parameters the new parameter is appended to the list of values. For all others, it replaces any current value.
Defined in: /web/philip/packages/acs-core/apm-procs.tcl

Source code:



    db_1row "select multiple_values_p, module_key, parameter_key from ad_parameter_elements where element_id = $element_id"
    db_release_unused_handles

    if { $multiple_values_p == "t" } {
	nsv_lappend $module_key $parameter_key $value
    } else {
	nsv_set $module_key $parameter_key [list $value]
    }


philg@mit.edu