E_VerifyResult

Syntax

Definition:

{attribute 'qualified_only'}
TYPE E_VerifyResult:
(
    check_None:= 0,
    check_OK := 1,
    check_Error:= 2,
    check_TypeWarning:= 3,
    check_TypeError := 4,
    check_DataLengthWarning := 5,
    check_DataLengthError := 6
);
END_TYPE

Values

Name

Description

check_None

PLC structure is not verified.

check_OK

No differences between PLC structure and database table structure

check_TypeWarning

Different data types with regard to the sign between PLC and database data types, e.g. UINT <> INT

check_TypeError

Different data types with regard to the sign between PLC structure and database table structure

check_DataLengthWarning

Different length between PLC structure and database table structure. The record can nevertheless be mapped, although data may be lost.

check_DataLengthError

Different length between PLC structure and database table structure. The record cannot be mapped.