HP Pascal/iX Reference Manual (31502-90022)

A-: 54
contain only valid characters in the particular base.
---------------------------------------------------------------------------------------
673 MESSAGE NUMBER OF SIGNIFICANT DIGITS CAUSED OVERFLOW (PASCERR 673)
RT CAUSE The number of significant digits was more than 32 for the
standard function BINARY, 11 for the function OCTAL, or 8 for
the function HEX.
ACTION Correct the argument to the numeric conversion function to be a
representable value.
---------------------------------------------------------------------------------------
690 MESSAGE OPEN ERROR: PHYSICAL FILE COULD NOT BE CLOSED (PASCERR 690)
RT CAUSE An attempt was made to open a file, but the logical file was
already associated with a physical file and this physical file
could not be closed prior to opening another physical file.
ACTION Find out why the file could not be closed.
---------------------------------------------------------------------------------------
691 MESSAGE OPEN ERROR: MISMATCH OF LOGICAL/PHYSICAL FILES (PASCERR 691)
RT CAUSE The characteristics of the logical file are not compatible with
those of the associated physical file. For example, a physical
file with variable length records may not be opened for direct
access.
ACTION Check to make sure that the file characteristics are
compatible.
---------------------------------------------------------------------------------------
692 MESSAGE FILE OPEN ERROR (PASCERR 692)
RT CAUSE An unsuccessful attempt was made to open a file. The file was
absent or exclusively accessed, or you did not have permission
to access the file.
ACTION Check for file's presence and its access protections, and also
the state of the file when the open is attempted.
---------------------------------------------------------------------------------------
693 MESSAGE ERROR OCCURRED WHILE READING FROM FILE (PASCERR 693)
RT CAUSE File system failure or corrupted Pascal FILE variable.
ACTION Correct the file system problem, or correct program error that
corrupted Pascal FILE variable, such as array reference out of
bounds with RANGE OFF or dereferencing an invalid pointer.
---------------------------------------------------------------------------------------
694 MESSAGE ATTEMPT TO READ PAST EOF (PASCERR 694)
RT CAUSE The current position is past the last component of the file.
ACTION Correct the program logic to check EOF before reading file data
or checking EOLN status. For a direct access file, check that
disk record to be read is not greater than MAXPOS.
---------------------------------------------------------------------------------------