The proc_version table holds information that is specific to a version of a procedure (or sub-procedure or sub-procedure parameter template).
The proc_version table has the following structure:
TABLE proc_version(
node_id INTEGER NOT NULL,
proc_id INTEGER NOT NULL,
major_vers SMALLINT NOT NULL,
minor_vers SMALLINT NOT NULL,
pd_version INTEGER NULL,
pv_status SMALLINT NULL,
pv_user VARCHAR(49) NULL,
pv_comment VARCHAR(128) NULL,
pv_created DATETIME NULL,
pv_modified DATETIME NULL,
pv_released DATETIME NULL,
pv_withdrawn DATETIME NULL,
pv_is_subproc SMALLINT NULL)
The proc_version table contains one row for every version of every procedure (or sub-procedure or sub-procedure parameter template) defined on the system.