HP Pascal/iX Reference Manual (31502-90022)

A-: 56
ACTION Correct the input.
---------------------------------------------------------------------------------------
702 MESSAGE INPUT VALUE OVERFLOW (PASCERR 702)
RT CAUSE The numeric value read is too large for the type of the
variable.
ACTION Correct the input.
---------------------------------------------------------------------------------------
703 MESSAGE ATTEMPT TO WRITE PAST PHYSICAL BOUNDS OF FILE (PASCERR 703)
RT CAUSE The current record position is past the physical limit of the
file.
ACTION Create a larger size file and re-run the program.
---------------------------------------------------------------------------------------
704 MESSAGE READ ATTEMPTED FROM OUTPUT FILE (PASCERR 704)
RT CAUSE An attempt was made to perform an input operation on a file
opened only for output.
ACTION Correct the program logic so it doesn't read from the file or
open the file in a way that permits reading (such as RESET or
OPEN.)
---------------------------------------------------------------------------------------
705 MESSAGE FILE NOT OPENED FOR DIRECT ACCESS (PASCERR 705)
RT CAUSE An attempt was made to perform a direct access file operation
on a file not opened for direct access with the OPEN procedure.
ACTION A nontext file must be opened for direct access with OPEN to
use SEEK, READDIR, WRITEDIR, or POSITION.
---------------------------------------------------------------------------------------
706 MESSAGE FILE NOT OPENED (PASCERR 706)
RT CAUSE An attempt was made to access an unopened file.
ACTION Correct the program logic so it doesn't read from the file or
open the file in a way that permits reading (such as RESET or
OPEN.)
---------------------------------------------------------------------------------------
707 MESSAGE INVALID OPEN OPTION (PASCERR 707)
RT CAUSE An invalid option was found in the third parameter to one of
the file opening procedures.
ACTION Correct the option.
---------------------------------------------------------------------------------------
708 MESSAGE COULD NOT OPEN FILE FOR APPEND ACCESS (PASCERR 708)
RT CAUSE A file system failure or corrupted Pascal FILE variable
prevented opening a variable length record file for append
access.
ACTION Either correct the file system problem or correct the program