HP Business BASIC/XL Reference Manual - HP 3000 MPE/iX Computer Systems - Edition 1 (32715-90001)

a- 67
2013 MESSAGE Total space needed for parameters is too big.
CAUSE The number or size of parameters to the subunit exceeds the
limit.
ACTION Reduce the number or size of parameters to the subunit.
------------------------------------------------------------------------------------
2014 MESSAGE Total space needed for DATA is too big.
CAUSE The number or size of values in the DATA statements exceeds the
limit.
ACTION Reduce the number or size of values in the DATA statements.
------------------------------------------------------------------------------------
2017 MESSAGE Fatal compiler error; compile terminated.
CAUSE A fatal compiler error was encountered, and the compile
terminated because of one of the following errors:
47 "Name" COMMON area does not exist.
47 Dimensions or type of COMMON variable in line "num" doesn't
match main.
1143 Can't read from file.
1499 Catastrophic error in heap management (unable to return
space).
2001 VERIFY is needed on subunit "name".
2012 Total space needed for variables is too big.
2013 Total space needed for parameters is too big.
2014 Total space needed for DATA is too big.
2011 Number of dimensions for array "name" not known in subunit
"name".
ACTION Use the interpreter to correct the problem, and recompile.
------------------------------------------------------------------------------------
2018 MESSAGE Can't open internal communication file. File system error
"error-num".
CAUSE An HP Business BASIC/XL internal file could not be opened.
ACTION Consult your system manager or refer to the
MPE XL Intrinsics
Reference Manual
.
------------------------------------------------------------------------------------
2019 MESSAGE Expression too complicated.
CAUSE The expression in the statement is too complicated, it might
cause stack overflow or code segment overflow.
ACTION The expression should be made simpler by putting parts of it
into temporary variables, and then using the variables in the
expression.
------------------------------------------------------------------------------------
2020 MESSAGE Redimension of "array-name"() illegal because of NO REDIM
compiler option.
CAUSE When COPTION NO REDIM is used to disallow redimensioning of
arrays, any statements that attempt to change the dimension of
arrays will cause a compile time error. For example:
10 COPTION NO REDIM
20 DIM A(1,2)