Copyright © Cloud Software Group, Inc. All rights reserved.
Copyright © Cloud Software Group, Inc. All rights reserved.


Chapter 7 Cases : status

status
The status table holds the current status of each step of each case on the system.
Structure
The status table has the following structure:
TABLE status (
node_id
INTEGER NOT NULL,
proc_id INTEGER NOT NULL,
casenum NUMERIC(20) NOT NULL,
step_num INTEGER NOT NULL,
step_status INTEGER NOT NULL)
Step status. Either: Not processed (0), Released (1), Outstanding (2) or Withdrawn (3).
Primary Key
The following primary key is defined for this table.
Foreign Keys
The following foreign key is defined for this table.

1
This key enforces the DELETE CASCADE referential action.

Indexes
The following index is defined for this table.
Table Activity
The status table contains one row for each step of each case (open or closed) on the system. Rows are added, updated and deleted in the following situations.

Copyright © Cloud Software Group, Inc. All rights reserved.
Copyright © Cloud Software Group, Inc. All rights reserved.