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

a- 32
SYSTEM "command2"
...
It may be that you have simply forgotten the "exit" command and
are running into the job's prompt character:
:job jobname,user.acct/passwd
:
:hpbb
10 print "Hi, Mom!"
run
:
:eoj
The ":" after the "run" command is read by HP Business BASIC/XL
as the HP Business BASIC/XL "SYSTEM" command. In this case,
insert an "exit" command between the"run" command and the
following ":"...
:job jobname,user.acct/passwd
:
:hpbb
10 print "Hi, Mom!"
run
exit
:
:eoj
------------------------------------------------------------------------------------
1136 MESSAGE This BASIC program has not been PREPed with Process Handling
(PH) capability.
CAUSE The program tried to run another program (possibly with the
SYSTEMRUN command) without previously having been given the
Process Handling capability.
ACTION Re-PREP the program with CAP=PH.
------------------------------------------------------------------------------------
1137 MESSAGE End of data on input device.
CAUSE 1. The interpreter has encountered the end of the command
input file. (The file BASCOM has been redirected.)
2. The program has read beyond the end of the file to which
BASIN has been redirected. The program is expecting more data
in the file than it should or the file doesn't contain as much
data as it should.
3. ":EOD" was typed in response to a request for input.
ACTION 1. End the command file with the "exit" command to terminate
the interpreter without an error.
2. Correct the data file or the program logic.
3. This is usually intentional.
------------------------------------------------------------------------------------
1138 MESSAGE Error {error_number} in reading input.
CAUSE A file system error has occurred while reading input.