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

a- 11
------------------------------------------------------------------------------------
114 MESSAGE Size requested for subunit space is too large. Default size
will be used.
CAUSE The subunit space size requested is too large (larger than
20000), the default size of 10466 words is used.
ACTION None, the default size will be used.
------------------------------------------------------------------------------------
115 MESSAGE Too much data space used in this subunit.
CAUSE The most probable cause is that the common area in this subunit
contains a variable that is too big. For instance, an array
A(10000) in a COM statement.
ACTION Reduce the size of large arrays.
------------------------------------------------------------------------------------
117 MESSAGE Not enough memory available for local variables in subunit.
CAUSE The program is too big to be processed by the interpreter.
ACTION Reduce the size of the program.
------------------------------------------------------------------------------------
119 MESSAGE Unable to allocate data space, request would cause total to
exceed configured limit.
CAUSE The program is too big to be processed by the interpreter.
ACTION Reduce the size of the program.
------------------------------------------------------------------------------------
131 MESSAGE Device unavailable.
CAUSE The device to which a file is assigned is not available. For
example, a file is assigned to a tape drive that is either
already assigned or is not turned on. This message is usually
returned by the operating system.
ACTION Assign the file to a different device or resolve the problem
with the requested device
------------------------------------------------------------------------------------
132 MESSAGE Cannot READ a number from a quoted string.
CAUSE This error message only comes from a compiled program. The
READ statement specifies a numeric variable but there is string
data in the DATA statement.
ACTION Correct the DATA statement or read the string data into a
string variable.
------------------------------------------------------------------------------------
134 MESSAGE Unit not ready or online.
CAUSE The device to which a file is assigned is not ready to be used.
For example, a tape drive may not be online when a tape file is
being read.
ACTION Ready the device and continue.
------------------------------------------------------------------------------------
150 MESSAGE Type of CASE expression does not match type of SELECT.
CAUSE The SELECT variable and the CASE expression do not match in
data type. For example, the SELECT specifies a numeric
variable but the CASE specifies a string variable.