apm_enable_version

one of the documented procedures in this installation of the ACS
Usage:
apm_enable_version   version_id
What it does:
Enables a version of a package (disabling any other version of the package).
Defined in: /web/philip/packages/acs-core/apm-procs.tcl

Source code:


    db_dml "
        update apm_package_versions
        set enabled_p = decode(version_id, $version_id, 't', 'f')
        where package_id = (
            select package_id from apm_package_versions where version_id = $version_id
        )
    "


philg@mit.edu