cdqp_def

The cdqp_def table holds information about each field that is defined as a Case Data Queue Parameter (CDQP).

Structure

The cdqp_def table has the following structure:

TABLE cdqp_def (
def_id number(10) NOT NULL,
field_name varchar2(31) NOT NULL,
data_size number(5) NOT NULL,
description varchar2(40) NOT NULL,
is_predict number(1) NOT NULL)

Column

Description

def_id

Unique identifier for this CDQP, generated from the sequences table.

field_name

Name of the iProcess field assigned to this CDQP, as defined in the case_data table.

data_size

Maximum size, in characters, of this CDQP.

description

Name used to represent this CDQP in Work Queue Manager dialogs.

is_predict

Flag that defines whether (1) or not (0) this CDQP is used for case prediction.

Primary Key

The following primary key is defined for this table.

Key Name

Column(s)

Index Tablespace

pk_cdqp_def

def_id

MEDIUMINDEXSPACE

Foreign Keys

None.

Indexes

None.

Storage

The following STORAGE values are defined for this table.

Value

Definition

Initial

MEDIUMTABLESIZE

Percentage Increase

MEDIUMTABLEPCTINCREASE

Tablespace

MEDIUMTABLESPACE

Table Activity

The cdqp_def table contains one row for each field on the system that is currently defined as a CDQP.

Rows are added, updated and deleted in the following situations.

A row is...

When...

added

a field is first defined as a CDQP.

updated

an existing CDQP definition is updated.

deleted

an existing CDQP definition is deleted.