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

a- 26
------------------------------------------------------------------------------------
911 MESSAGE Invalid lockword specified.
CAUSE An invalid file lockword was supplied.
ACTION A lockword must have no more than eight characters, beginning
with an alphabetic character and followed alphanumeric
characters. Check that the specified lockword has these
characteristics.
------------------------------------------------------------------------------------
912 MESSAGE CATALOG's work-file size has been exceeded.
CAUSE The CATALOG command directs the output from the MPE :LISTF
command to a temporary file. This message appears when the
file is not large enough for the number of files involved.
ACTION Create a larger LISTF temporary file with:
:FILE LISTF;REC=-68,64,F,ASCII;DISC=nnnnn,32;NOCTL;TEMP
where nnnnn is a number large enough to hold the :LISTF output.
The default value of nnnnn is 10000. To create a file large
enough to do a CATALOG on a given number of files,nr_files, use
the following:
nnnnn >=nr_files+(CEIL(nr_files/53)*5)+2
------------------------------------------------------------------------------------
913 MESSAGE Short real overflow during conversion from Compatibility Mode
short real data.
CAUSE The range of Native Mode (IEEE) short real data is smaller than
the range of Compatibility Mode (MPE/V) short real data.
ACTION If the data is in a BASIC DATA file then the conversion utility
can be used to convert between REAL types. If the data is in a
database then either use Compatibility Mode BASIC to read the
data or manual conversion of the database will be required. If
the data is internal to the program then changing the target
variable to REAL may solve the problem.
------------------------------------------------------------------------------------
914 MESSAGE Short real underflow during conversion from Compatibility Mode
short real data.
CAUSE The range of Native Mode (IEEE) short real data is smaller than
the range of Compatibility Mode (MPE/V) short real data.
ACTION If the data is in a BASIC data file then the conversion utility
can be used to convert between REAL types. If the data is in a
database then either use Compatibility Mode BASIC to read the
data or manual conversion of the database will be required. If
the data is internal to the program then changing the target
variable to REAL may solve the problem.
------------------------------------------------------------------------------------
915 MESSAGE Real overflow during conversion to Compatibility Mode Real
data.
CAUSE The range of Native Mode (IEEE) real data is larger than the
range of Compatibility Mode (MPE/V) REAL data.
ACTION This value can't be represented as a CM real value. Your
program logic might allow the largest and smallest CM real
values to be used to represent NM values that are out of CM
real range.
------------------------------------------------------------------------------------
916 MESSAGE Real underflow during conversion to Compatibility Mode Real