Unicon documentation migration is in progress. You might find some broken links or experience minor issues in the documentation. We are working on resolving these issues.

X

Scout Database Model (CR)

Table: IccMessageParam

This table contains all  messages which may be sent from one to another console

ColumnName DataType Key Not Null Default Value Comment
IccMessageParam INTEGER PK NN    
DisplayTime INTEGER        
CanCancel SMALLINT        
MsgText1 NVARCHAR(255)        
MsgText2 NVARCHAR(255)        
MsgText3 NVARCHAR(255)        
MsgText4 NVARCHAR(255)        
IndexName IndexType Columns
PRIMARY PRIMARY IccMessageParam

How to create

CREATE TABLE IccMessageParam( IccMessageParamID INTEGER NOT NULL, DisplayTime INTEGER, CanCancel SMALLINT, MsgText1 NVARCHAR(255), MsgText2 NVARCHAR(255), MsgText3 NVARCHAR(255), MsgText4 NVARCHAR(255), PRIMARY KEY (IccMessageParamID));
Table: IccMessageParam