Sie sind auf Seite 1von 13

9/9/2020 Compile Error Messages | Compile

Compile > Compile a Project > Compile Messages > Compile Error Messages

Compile Error Messages

The following table describes the compile messages you may encounter when compile a project. For information
on how to address an ERROR message, use the code included in the error description (for example, "E2001") to
locate the error message in the following table.

If the Type specified for a compile error message is WARNING, see the topic Compile Warning Messages.

If the Type specified for a compile error message is FATAL, see the topic Compile Fatal Messages.

Error
Error Message Description
Code

The specified tag does not exist. Check that the tag name and
'equipment.item' reference is correct, or add the tag to your
project.

E2001 Tag not found If the tag does exist in the variables database, the index to the
database might be incorrect. This can occur if you have edited the
variables database using Excel or some other database editor. To
re-index the database, go to the Projects activity and select Pack
on the Command Bar.

E2002 Database is empty The database does not contain any records.

This error indicates that the address of the variable tag, which
Cannot write to read
E2003 refers to a protocol-specific area on the device, is read only. This
only variable
means it is not possible to write to the variable tag.

Too many records have been specified in the database. This error
Too many records in
E2004 should only occur if the Citect.frm file has been changed or
database
become corrupt. Contact Technical Support.

Too many fields have been specified in the database. This error
Too many fields in
E2005 will only occur if the Citect.frm file has been changed or become
database
corrupt. Contact Technical Support.

An integer value cannot be found where one is expected, or the


E2006 Bad integer value
integer value is out of range.

A floating-point number cannot be found where one is expected, or


E2007 Bad floating point value
the floating-point value is out of range.

A tag name was not found where one was expected, or an


E2008 Tag expected expression has been passed to a function that expects a tag.
Check that the tag name is correct, or add the tag to your project.

This error indicates that the address of the variable tag, which
Cannot read from write
E2009 refers to a protocol-specific area on the device, is write only, so the
only variable
variable tag does not have a value that can be read.

The specified I/O device does not exist or cannot be located.


Primary IO device not
E2010 Check that the device reference is correct, or add the I/O device to
found
your project.

johnwiltshire.com/citect-help/Content/Compile_Error_Messages.html 1/13
9/9/2020 Compile Error Messages | Compile

Error
Error Message Description
Code

The Cicode statement has a different number of open and close


brackets. Another close bracket ')' or ']' is expected in the
statement.
E2011 Close bracket expected For example: This error can be generated when a Genie is
configured to be used by DspSym Cicode function but still has
genie substitution syntax such as '%substitution%' on expressions
that are unsupported by that configuration.

A database record does not exist. Check that the record name
E2012 Symbol search failed
is correct.

Read remap is not


A mapped variable cannot be read when Remap Read is disabled.
E2013 supported for this
Check the remapping configuration.
variable

The address of the variable is invalid for the protocol specified for
E2014 Bad IO Device variable
the I/O device.

An invalid raw data type or a mismatch of data types is specified,


for example, an attempt was made to convert an integer into a
string.
This may be due to a variable address implying a data type that is
not compatible with the data type specified.
Example 1
Protocol: S7NT or PSDIRECT
Tag Data Type: REAL

E2015 Bad raw data type Address: DB101,54.3[32]


In this case, the address implies that the variable is an array of 32
DIGITALs (via bit access) but the tag data type is REAL.
Example 2
Protocol: ABMLXEIP
Tag Data Type: INT
Address: T4:0/0
In this case, the address implies that the variable is a DIGITAL (via
bit access) but the tag data type is INT.

A tag is indexed but that tag is not declared as an array, or no


index has been specified when a tag is declared as an array, or
E2016 Array size exceeded
the wrong number of dimensions are specified for an array, or
more than four dimensions are specified for an array.

E2017 String expected Only strings can be used in database fields.

The protocol field in the I/O Devices database is blank. You need
E2018 Protocol expected
to select a protocol for the I/O Device.

You need to use parentheses () in Cicode functions, even when


they have no parameters, for example MyFunction().
E2019 Open bracket expected This error can be generated when a variable tag is placed on a
graphics page and the name of the tag is identical to the name of a
Cicode function in the project or an included project.

johnwiltshire.com/citect-help/Content/Compile_Error_Messages.html 2/13
9/9/2020 Compile Error Messages | Compile

Error
Error Message Description
Code

A malformed Cicode expression has been specified. Check the


E2020 Syntax error
structure of the expression.

Tag names, alarms, trends, users and Cicode functions all need to
E2021 Record already defined be unique within a project and any included projects. Check for
duplicated names.

Too many or not enough arguments have been specified for a


Incorrect number of
E2022 Cicode function. Check the number of arguments being passed to
arguments for function
the function and make the required adjustments.

Trailing characters in There are extra trailing characters in a Cicode statement, following
E2023
Cicode the semi-colon.

There is a mismatch of data types in a statement. For example, a


string is specified where a number is expected.
This error can be generated when a variable tag is placed on a
graphics page and the name of the tag is identical to the name of a
E2024 Incompatible types Cicode function in the project or an included project.
This error can also be generated when a Genie is configured to be
used by the DspSym Cicode function and has genie substitution
syntax such as '%substitution%' on expressions that are
unsupported by that configuration.

Too many arguments are specified in a Cicode function. The


E2025 Too many arguments
maximum number of arguments allowed is 32.

The font does not exist in the project. Check that the font name is
E2026 Invalid font name
correct, or specify the font in the Standards activity.

A non-integer value was found where a TRUE or FALSE value is


E2027 Invalid BOOLEAN value expected. For example, the controlling expression in an IF, WHILE,
or FOR statement needs to be an integer.

An INT or other analog tag is specified where a DIGITAL tag is


Analog address not
E2028 expected. Check that the tag name is correct, or that a DIGITAL
supported
data type is specified for the tag.

The device listed in the report configuration does not exist. Check
E2029 Group not found
that the device or group name exists.

E2030 Group expected

E2031 FUNCTION expected A function needs to be declared with the FUNCTION keyword.

E2032 THEN expected A THEN statement needs to be used in an IF statement.

E2033 DO expected A DO statement needs to be used in a WHILE statement.

An END statement needs to be used at the end of a conditional


E2034 END expected
statement or function definition.

Bad string conversion An invalid format parameter is specified in a string conversion.


E2035
parameter Check the format specification of the variable.

johnwiltshire.com/citect-help/Content/Compile_Error_Messages.html 3/13
9/9/2020 Compile Error Messages | Compile

Error
Error Message Description
Code

A RETURN statement cannot be used in a function that does not


Cannot return value
E2036 return a value. Remove the RETURN statement or declare a
from void function
return data type for the function.

Must return value from If a Cicode function is declared to return a value, it needs to have
E2037
function a RETURN statement.

Label names needs to be unique. Check the labels defined in the


E2038 Label is defined twice
Standards activity for duplicated names.

Cannot use RETURN


E2039 A RETURN statement can only be used within a function.
outside of functions

Citect SCADA is expecting a statement. Check the Cicode for


E2040 Statement expected
syntax errors.

A Cicode operator needs to be followed by an operand.

This error can be generated when a Genie is configured to be used


E2041 Operand expected by the DspSym Cicode function and has genie substitution syntax
such as '%substitution%' on expressions that are unsupported by
that configuration.

The time is incorrectly specified in the Time, Period or Sample


Period field of a Reports, Events, Trend Tags, SPC Trend Tags, or
Device.
Time formats needs to be in the format HH:MM:SS and needs to
be in the range of 0:00:00 - 23:59:59. Only the hour is necessary,
for example a value 16 means 16:00 (4:00 PM). Also 24:00:00 is
accepted for historical purposes, and maps directly to 0:00:00.

E2042 Invalid time format Period formats needs to be either a valid date or a time in the
format HH:MM:SS with the minutes and seconds in the range of 0
- 59. Only the seconds are necessary, for example a value of 22
means 22 seconds.
Sample Period formats need to either be a milliseconds value (for
example 0.200 for 200 milliseconds) or a time in the format
HH:MM:SS with the minutes and seconds in the range of 0 - 59.
Only the seconds are necessary, for example a value of 22 means
22 seconds.

The format is incorrectly specified for an analog variable. Check


E2043 Bad analog format
the Format field in the Variable Tags form.

Maximum report size The report file size needs to be less than 63 kb. Reduce the size of
E2044
exceeded the report or configure two reports.

A Cicode expression that contains an invalid expression has been


E2045 Bad factor specification
used. Check the syntax of the expression.

E2046 Semicolon expected Cicode statements need to be separated with semi-colons (;).

Page name cannot start A Page Name needs to start with an alphanumeric character (A -
E2047
with underscore Z, a - z, or 0 - 9).

A group does not exist in the project. Check that the group name is
E2048 Invalid group definition
correct, or specify the group with the Groups form.

johnwiltshire.com/citect-help/Content/Compile_Error_Messages.html 4/13
9/9/2020 Compile Error Messages | Compile

Error
Error Message Description
Code

Cicode data limit An array in a Cicode module cannot exceed 60 KB. Reduce the
E2049
reached size of the array.

An expression is too large for the compiler. Reduce the length of


E2050 Expression too big the expression by splitting the expression into two or more smaller
expressions.

An include file specified in a database field cannot be found or


E2051 Error reading file cannot be opened. Check that the file name is correct, and that the
file has been specified correctly (for example, <@FILENAME>).

Cannot use an array You cannot declare an array within a function. Arrays can only be
E2052
inside function declared as library variables, at the beginning of the library file.

Trailing characters in The database record name contains invalid characters. Remove
E2053
Name any invalid characters from the record name.

The Cicode statement has a different number of open and close


Close quotation mark
E2054 quotation marks. Another close quotation mark (") is expected in
expected
the statement.

The string size has been exceeded. The maximum size of the
E2055 String too big
string not to exceed 255 characters.

A comment opened with /* needs to be closed with the */ delimiter.


Close comment
E2056 Add the */ delimiter or use a single line comment that starts with an
delimiter expected
exclamation mark (!) and has no end delimiter.

The syntax of the argument is incorrect, or the incorrect number of


E2057 Label argument error arguments has been specified, or the number of characters in an
argument is incorrect.

E2058 Invalid number

E2059 Label too big The label is too big. The size of a label cannot exceed 8kb.

When reading a long or real from the memory of an I/O device,


Address on bad addresses need to be on odd or even boundaries. Addresses
E2060
boundary cannot be mixed. You can disable checking with the
[General]CheckAddressBoundary parameter.

Super Genie syntax (?) can only be used on pages. You cannot
Super Genie must be on
E2061 use a Super Genie in a report or Cicode function library. Use the
a Page
TagRead() and TagWrite() functions instead.

Write remap is not


A mapped variable cannot be written to when Remap Write is
E2062 supported for this
disabled. Check the remapping configuration.
variable

Digital Array must start


E2063
on 16 bit boundary

Remap is defined more Duplicate mappings are configured for a variable. Check the
E2064
than once remapping configuration.

A SELECT statement in your Cicode function needs to be followed


E2065 CASE expected
by a CASE statement.

johnwiltshire.com/citect-help/Content/Compile_Error_Messages.html 5/13
9/9/2020 Compile Error Messages | Compile

Error
Error Message Description
Code

Unexpected trend
E2066
sample period

Too many variables have been defined for a Cicode function.


Too many function
E2067 Check the configuration of the function and make the required
variables defined
adjustments.

Too many Cicode files The project includes more than the allowable number of Cicode
E2068
defined files.

You have declared a Module function within your Cicode. Module


MODULE function is not
E2069 is not a valid function type. Instead, the type Private needs to be
allowed, use PRIVATE
used.

You have declared a Global function within your Cicode. Global is


GLOBAL function is not
E2070 not a valid function type. Instead, the type Public needs to be
allowed, use PUBLIC
used.

You have declared a Public variable within your Cicode. Public is


PUBLIC variable is not
E2071 not a valid variable type. Instead, the type Global needs to be
allowed, use GLOBAL
used.

You have declared a Private variable within your Cicode. Private is


PRIVATE variable is not
E2072 not a valid variable type. Instead, the type Module needs to be
allowed, use MODULE
used.

E2073 VB compiler error

CiVBA code not allowed


E2074 The compiler has detected CiVBA code where it is not supported.
here

Unexpected FUNCTION
E2076 declaration found, are The number of END statements in your functions is incorrect.
you missing an END?

Tag names need to be unique across a project, even if they are


Tag already defined,
E2077 different types. Change the tag name property for one of the
tags must be unique
duplicated tags.

A cluster cannot be found. Check that the cluster reference is


E2078 Cluster not found correct, or create the specified cluster. Clusters can be defined by
selecting Computers in the Topology activity.

Every project needs to be configured to use at least one cluster.


E2079 No Clusters defined Clusters can be defined by selecting Computers in the Topology
activity.

E2080 Invalid mode specified The mode specified for the alarm, report or trend server is invalid.

Each cluster can only include one pair of redundant alarm servers,
More than one server of
one pair of redundant report servers, and one pair of redundant
E2081 this type exists in this
trend servers. Check the servers that are configured for the
cluster
cluster.

A server with this name Server names need to be unique. Rename one of the servers with
E2082
already exists the duplicated name.

johnwiltshire.com/citect-help/Content/Compile_Error_Messages.html 6/13
9/9/2020 Compile Error Messages | Compile

Error
Error Message Description
Code

Cannot use format on


E2083 Expression with no
result

Network Address not


The compiler has detected a network address that has not been
defined in
E2084 defined in your project. Edit the address if it incorrect, or add it to
Topology/Network
your project.
Addresses

Network Address not


The compiler has detected a network address that has not been
defined in
E2085 defined in your project. Edit the address if it incorrect, or add it to
Topology/Network
your project.
Addresses

Duplicate network Two servers of the same type within a shared cluster have been
E2086 address for same type configured with the same network address. Change the address
of server in a cluster for one of the servers.

Duplicate network Two I/O servers have been configured with the same network
E2087
address for IO server address. Change the network address for one of the servers.

The numbers 2073-2082, 2086, 20222 and 21 are reserved.


E2088 Invalid port number act
Please change these port numbers to another value.

Invalid port number


(2073- The numbers 2073-2082, 2086, 20222 and 21 are reserved.
E2089
2082,2086,20222,21 are Please change these port numbers to another value.
reserved)

Every project needs to be configured to use at least one cluster.


E2090 Cluster name expected Clusters can be defined by selecting Computers on the Topology
activity.

Trailing characters in
E2091 There are extra trailing characters following an expression.
Expression

A report, trend, alarm or I/O server is configured in your project


A server with this
with the same network address and port number. If you intend for
E2092 network address and
these servers to be configured on the same machine, change the
port already exists
port number, otherwise update the network address.

Every project needs to be configured to use at least one cluster.


Cluster not found for the
E2093 Clusters can be defined by selecting Computers on the Topology
IO Device
activity.

Deadband value must


The compiler cannot decipher the value specified for a deadband.
E2094 be expressed as a
Adjust the value so that it represents a percentage (0.0 - 100.0).
percentage (0.0 - 100.0)

Tag already defined as a Tag and local variables cannot have the same name. Please
E2095
local variable tag rename one or the other.

Cluster must be
specified when two
More than one server of the same type has been defined on the
E2096 servers of the same type
same machine. Please define a cluster for each server.
exist at the same net
addr.

johnwiltshire.com/citect-help/Content/Compile_Error_Messages.html 7/13
9/9/2020 Compile Error Messages | Compile

Error
Error Message Description
Code

Invalid combination of
specified & unspecified The network addresses for the servers in a project need to all be
E2097
network addresses for blank, or all configured.
the defined servers

No Server of proper type No server has been defined for this type in this cluster. Please
E2098 is defined for the define the appropriate server by selecting Computers on the
specified cluster Topology activity.

Two primary I/O devices within the same cluster have been
Primary IO devices
configured to use the same network number. If the devices have
having same network
E2099 the same number to support redundancy, change the priority and
number cannot belong
startup mode. Otherwise, change the network number or move the
to the same cluster
devices to a different cluster.

Primary IO device not This error occurs when the I/O device listed in the tag
E2100
found for the cluster configuration does not exist.

Function is obsolete and


The Cicode function that you are trying to use can no longer be
E2101 cannot be used
used. Refer to the upgrade topic for details.
anymore

Standby IO device A cluster has a standby I/O device configured, but no primary I/O
E2102 should have a primary device. Check the configuration of your redundant devices to
on the same cluster confirm that a primary I/O device is assigned to the cluster.

Primary IO device must


E2103 Set the Priority field for the primary I/O device to 1.
have a priority of 1

The Priority field allows you to set precedence for the primary and
IO device has duplicate standby devices within a cluster. Check the priority setting for the
E2104
priority I/O devices with the same number in the specified cluster and
remove any duplications.

Compound statement
too large; refactor code.
E2105
Please see KB article
Q5070

A duplicate menu entry Check the configuration of your menus in the Visualization activity
E2106
already exists and remove any duplications.

User has an invalid or


A user is assigned to a role that does not exist. Check the
E2107 nonexistent role
configuration of the specified user account.
assigned

E2108 Comma expected

Function name is longer A Cicode function name must be shorter than 250 characters.
E2109
than 250 characters Rename the Cicode function.

johnwiltshire.com/citect-help/Content/Compile_Error_Messages.html 8/13
9/9/2020 Compile Error Messages | Compile

Error
Error Message Description
Code

The format of the device is in an incorrect format. This could mean


one of two issues is occurring:

1. There is incorrect number of open and close bracers ( '{' and


'}') in the device format. For example:
Malformed device
E2110 {Date,10}^v{TimeLong,12
format
^v{MsgLog,50}^v{Arg1,7}^v{FullName,20}
2. A comma is missing between either the field name, field width
or justification. For example:
{Date,10}^v{TimeLong,12}^v{MsgLog
50}^v{Arg1,7}^v{FullName,20}"
Minimum update rate
The Min Update Rate field is not configured correctly for a
value must be blank or
E2111 standby device. Adjust the current setting so that is blank, or has
same value as defined
the same value as the primary I/O device.
by the primary device

Staleness period value


The Staleness Period field is not configured correctly for a
must be blank or same
E2112 standby device. Adjust the current setting so that is blank, or has
value as defined by the
the same value as the primary I/O device.
primary device

The setting for


Background Poll must The Background Poll field is not configured correctly on an I/O
E2113 be the same for all I/O device. Check that the setting is the same on all devices that share
devices on the same a common I/O server.
server

The setting for


Background Rate must The Background Rate field is not configured correctly on an I/O
E2114 be the same for all I/O device. Check that the setting is the same on all devices that share
devices on the same a common I/O server.
server

Tag element and item


E2115 names cannot be used
in this context

Tag element and item


names cannot be used
E2116
in the context of a push
data event trend

No User has been


defined for this project.
E2117 Use the Security activity to add at least one user to your project.
At least one user must
be defined

Standby server has


A cluster has a standby server configured, but no primary server.
been defined without
E2118 Check the configuration of your redundant servers to confirm that
primary server in the
a primary server is assigned to the cluster.
cluster

When enabling legacy


connections, all legacy
E2119
ports must be
configured

johnwiltshire.com/citect-help/Content/Compile_Error_Messages.html 9/13
9/9/2020 Compile Error Messages | Compile

Error
Error Message Description
Code

Two IO devices with This occurs when two I/O devices have the Persist property set to
E2120 Persist set to true have "True", and the File Name property set to the same value. Change
the same File Name the file name for one of the I/O devices.

E2121 Invalid path

Two primary I/O devices have the same name, but different
Same primary IO device
network numbers. If the devices have the same name to support
name used with two
E2122 redundancy, confirm that they have the same network number and
different network
have the priority and startup mode set correctly, otherwise assign
numbers
them to a different cluster.

The compiler has detected a reference to undefined equipment.


Undefined equipment
E2123 Check that the reference is correct. If required, add the equipment
name
definition to your project in the System Model activity.

The compiler has detected a reference to an undefined equipment


Undefined equipment
E2124 state. Check that the reference is correct. If required, add the
state name
equipment state to your project in the System Model activity.

E2125 Invalid default state

E2126 Invalid DR Mode value

Equipment State
E2127
contains cyclic reference

State defined without


E2128
default DR Mode value

Invalid destination This occurs when the destination location specified for a custom
E2129
location file is invalid. Check that the destination setting is correct.

The compiler has detected two OPC servers with the same name.
Duplicate network
Each OPC server must have a unique name and run on a
E2130 address name for OPC
separate computer. Check the configuration of your OPC servers
Server
to make sure they use different names and network addresses.

The compiler has detected two OPC servers with the same
Duplicate network IP network address. Each OPC server must run on a separate
E2131
address for OPC server computer. Check the configuration of your OPC servers to make
sure they use different network addresses.

Cluster name present in A name used for root level equipment may not be the same as any
E2132
Equipment name cluster names. Check your equipment definitions.

An equipment record
Equipment names need to be unique within the same cluster.
E2133 with this name is already
Check your equipment definitions.
present

Wrong hierarchy for


E2134 The browsing hierarchy setting for the OPC server is invalid.
OPC Server

Equipment hierarchy too


E2135
deep

johnwiltshire.com/citect-help/Content/Compile_Error_Messages.html 10/13
9/9/2020 Compile Error Messages | Compile

Error
Error Message Description
Code

Equipment object name The length of the complete name for the equipment needs to be
E2136
too long less than 254 characters. Check your equipment definitions.

Equipment Name and


Indicates the combination of "Equipment.Item" is too long. Change
E2137 Item too long. Specify or
the name of the Equipment and/or Item.
change the Item field

Indicates the combination of "Equipment.Item" is not unique within


Equipment Name and the cluster. Change the name of the Equipment and/or Item.
E2138 Item not unique. Specify This message will also occur if on the same level within the
or change the Item field equipment hierarchy, the equipment object and the item object
name are identical.

Equipment root has


A name used for root level equipment may not be the same as any
E2139 same name as an Alarm
alarm tag names. Check your equipment definitions.
Tag

The Storage Method is


E2140 The Storage Method property has not been defined for the trend.
not defined

Equipment not specified


Indicates that the Item field on the Tag Form (Variable Tags, Trend
for tag item. Please
E2141 Tags, and all Alarm Tags) was specified without an associated
specify equipment or
Equipment Name.
remove tag item

Item name is also a


An Item name cannot have the same name as a node on the
E2142 node within the
equipment hierarchy.
equipment hierarchy

No report server defined Equipment requires a report server to be configured. Add a report
E2143
for this cluster server to the cluster.

The user name conflicts with a set of reserved user names. Use a
E2144 Invalid user defined
different name.

E2145 Invalid role defined

Tag name exceed length


E2146
limit

Conflict of parameters in A parameter setting in an included project is conflicting with the


E2147
included projects same parameter in the main project.

Certificate must be An EWS server requires an SSL certificate. You will need to create
E2148 configured for EWS an SSL certificate, install it locally on the server, and identify it in
Server the EWS Server properties.

The compiler has detected that two EWS servers are configured
Multiple EWS Servers
on the same computer. Each EWS server must run on a separate
E2149 cannot run on the same
computer. Check the configuration of your EWS servers to make
machine.
sure they use different network addresses.

E2150 Invalid Genie format

Password is invalid due


E2151 to duplication of user
record

johnwiltshire.com/citect-help/Content/Compile_Error_Messages.html 11/13
9/9/2020 Compile Error Messages | Compile

Error
Error Message Description
Code

E2152 Invalid Setpoint

Set the parameter


If your project includes tags, tag items, or equipment names that
[General]TagStartDigit=1
E2153 have a number as the first character, you need to set the
if your tags start with a
parameter [General]TagStartDigit to "1" to enable a compile.
digit

Duplicate ScheduleID
E2154
for IODevice

Profile name is invalid as it may contain a space, or any of these


E2155 Profile name is invalid
characters: < > : \ " / \\ | ? *. Rename the profile.

Cicode IODevices do
not support memory A Cicode I/O device will not compile if memory mode is set to
E2156
mode, memory must be TRUE. Set memory mode to FALSE for the Cicode I/O device.
set to FALSE

An Equipment Reference refers to Equipment or Referenced


E2157 Equipment Expected Equipment that does not exist. Update the Equipment Reference,
or add the missing equipment to your project.

Duplicate Equipment An Equipment Reference is configured twice. Check the


E2158
Reference configuration of the duplicated entries.

Too many alarm


Confirm that only eight sets of Cause and Response properties are
E2159 responses are defined
defined for each alarm tag.
for an alarm

E2160 Content Type not found

The Value property for an Alarm Priority must be between 1 and


E2161 Invalid Alarm Priority 255. If a label is used, confirm that it validates to a value between
1 and 255.

An Alarm Priority is configured twice. Check the configuration of


E2162 Duplicate Alarm Priority the duplicated entries (including any that may occur in an included
project).

Alarm Priority or Alarm Display colors need to be configured for an Alarm Priority or an
E2163 Mode color must be Alarm Mode. Check that the 'Foreground Color' and/or
specified 'Background Color' properties have not been left blank.

Port Name can be no A Port Name is too long. Use a name that is no longer than 31
E2164 characters.
longer than 31 characters

Duplicate Alarm Mode The Display Name specified for an Alarm Mode is configured
E2165
display name twice. Remove one of the duplicated entries.

The Display Name specified for an Alarm Mode is invalid. You can
Invalid Alarm Mode
E2166 select a valid name for this field from the drop-down list in the Grid
display name
Editor.

The specified screen profile name is invalid. Names should be less


Screen Profile Name is
E2167 than 65 characters long and must not contain any invalid characters
Invalid
(< > : " / \ | ? *).

johnwiltshire.com/citect-help/Content/Compile_Error_Messages.html 12/13
9/9/2020 Compile Error Messages | Compile

Error
Error Message Description
Code

A runtime equipment parameter is configured twice for the same


Duplicate Equipment
E2168 equipment on the same cluster. Locate and change the duplicate
Runtime Parameter
entries.
The specified equipment item name is invalid. Use a valid item name
that is not one of tag extensions keyword. If the item name is
Invalid equipment item
E2169 automatically generated by an equipment template, use Equipment
name
Editor to rename the item name on the template and run the Update
Equipment command.

Published June 2018

johnwiltshire.com/citect-help/Content/Compile_Error_Messages.html 13/13

Das könnte Ihnen auch gefallen