Copyright © Cloud Software Group, Inc. All Rights Reserved
Copyright © Cloud Software Group, Inc. All Rights Reserved


Chapter 7 Cases : outstanding_addr

outstanding_addr
The outstanding_addr table holds information about each outstanding step on the system.
Structure
The outstanding_addr table has the following structure:
TABLE outstanding_addr (
node_id number(5) NOT NULL,
proc_id number(5) NOT NULL,
casenum number(20) NOT NULL,
sentdate date NOT NULL,
deadline number(1) NOT NULL,
deadline_exprired number(1) NOT NULL,
sub_procedure number(1) NOT NULL,
deaddate date NOT NULL,
stepname varchar2(8) NOT NULL,
user_name varchar2(64) NOT NULL,
reqid number(20) NOT NULL,
item_suspended number(1) NOT NULL,
item_withdrawn number(1) NOT NULL,
array_idx number(5) NOT NULL)
Flag that defines whether (1) or not (0) this outstanding step has a deadline defined.
Flag that defines whether (1) or not (0) the deadline (if defined) has expired and been processed.
Flag that defines whether (1) or not (0) this outstanding step is a sub-procedure call.
Flag that defines whether (1) or not (0) this outstanding step is currently suspended.
Note: item_suspended is only set if the case is suspended and the ignore suspend attribute is not set on the step.
Flag that defines whether (1) or not (0) this outstanding step is withdrawn.
-1, otherwise.
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 indexes aredefined for this table.
Storage
The following STORAGE values are defined for this table.
Table Activity
The outstanding_addr table contains one row for each outstanding step 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