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

a- 36
SAVE LIST "filename".
If this is successful, then do a GET "filename"
If you obtained this message trying to run a program, then the
run-time data structures used to store the values of variables
could not be allocated because of space constraints. Try to
reduce the size of large arrays or eliminate unnecessary or
unused variables.
------------------------------------------------------------------------------------
1155 MESSAGE Unable to open intrinsic file "intr_filename".
CAUSE intr_filename does not exist as specified or it is being
accessed exclusively.
ACTION Check to be certain that the file exists or that it is not
being accessed exclusively.
------------------------------------------------------------------------------------
1157 MESSAGE Procedure "procedure" is not in the intrinsic file.
CAUSE Interpreter: The name or alias specified in the INTRINSIC
statement was not found in the intrinsic file prior to running
that main, program or function.
Compiler: The name or alias specified in the INTRINSIC
statement in the intrinsic file was not found prior to
compiling that main, program or function.
ACTION Check the name of the intrinsic file to be certain that you are
using the one that contains the correct name or alias. If this
does not work, change the name or alias to conform to the name
in the intrinsic file.
------------------------------------------------------------------------------------
1158 MESSAGE The procedure "procedure_name" is being used where a function
is needed.
CAUSE A procedure is being called when a return value is expected,
either as a function call or with the use of the FNCALL
keyword.
ACTION Either change the procedure to a function or call the procedure
as a procedure.
------------------------------------------------------------------------------------
1159 MESSAGE Call to procedure "procedure_name" failed.
CAUSE The call to the HP Business BASIC/XL built-in function TASKID
failed. The "procedure_name" is PROCINFO, the MPE intrinsic
called to obtain the information.
ACTION The most likely cause of this is an operating system problem.
The problem is not an HP Business BASIC/XL problem.
------------------------------------------------------------------------------------
1167 MESSAGE Procedure "procedure_name" cannot be called as a function.
CAUSE The intrinsic file indicates that procedure_name is a
procedure, but it has been defined in the INTRINSIC statement
as having a return value.
ACTION Change the INTRINSIC definition for the procedure by removing
the type declaration for the return value.
------------------------------------------------------------------------------------
1169 MESSAGE Command "_" ANYPARM call allowed only in PAUSEd executing
subunit with _"procedure_name" call.