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

a- 13
CAUSE A statement that should not appear inside a report definition
has been detected. This error is part of error 157, VERIFY
error.
ACTION Delete the statement.
------------------------------------------------------------------------------------
171 MESSAGE Statement can only occur in a SUB.
CAUSE A multi-line function is found to contain a statement that has
meaning only in a SUB. For instance, a SUBEXIT statement is in
a multi-line function. This error is part of error 157, VERIFY
error.
ACTION Delete or replace the statement.
------------------------------------------------------------------------------------
174 MESSAGE Statement on line N can only occur in a numeric function.
CAUSE A string function contains a numeric value in its RETURN
statement. This error is part of error 157, VERIFY error.
ACTION Change the return value to the correct type.
------------------------------------------------------------------------------------
175 MESSAGE Statement on line N can only occur in a string function.
CAUSE A numeric function contains a string value in its RETURN
statement. This error is part of error 157, VERIFY error.
ACTION Change the return value to the correct type.
------------------------------------------------------------------------------------
176 MESSAGE Statement on line N can only occur in a multi-line function.
CAUSE The statement on the cited line is allowed only in a multi-line
function.
ACTION Make sure that this statement is in a function or use a
different statement.
------------------------------------------------------------------------------------
177 MESSAGE Dimensions of VAR use local variables.
CAUSE A variably dimensioned array VAR uses a local variable in its
definition. For instance, DIM A(Loc) where Loc is a local
variable in the SUB where A is defined. This error is part of
error 157, VERIFY error.
ACTION Redefine the array.
------------------------------------------------------------------------------------
178 MESSAGE Dimensions of VAR use single line functions containing local
variables.
CAUSE A variably dimensioned array uses a single line function to
return its dimension. The single line function uses a local
variable of the SUB in which it is defined. This error is part
of error 157, VERIFY error.
ACTION Redefine the variably dimensioned array.
------------------------------------------------------------------------------------
179 MESSAGE Structured construct on line N not properly closed.
CAUSE The interpreter has detected a multi-line construct that has no
closing statement. For instance, a SELECT has no corresponding
ENDSELECT statement, or a multi-line IF has no ENDIF. This
error is part of error 157, VERIFY error.