T.R | Title | User | Personal Name | Date | Lines |
---|
3196.1 | VAX COBOL V5.2 is no longer supported | PACKED::BRAFFITT | | Mon Feb 10 1997 11:38 | 6 |
| > Installed COBOL V5.2-35 on VAX VMS 6.1
VAX COBOL V5.2 is no longer supported.
VAX COBOL V5.4 just went to the SSB. See note 3174 for a pointer to
the kit.
|
3196.2 | Installation of COBOL V5.4 IVP still failes?? | MIASYS::LALIBERTE | | Mon Feb 10 1997 12:11 | 13 |
| I just installed V5.4 and IVP still failes with the same message
?#002 Reported file-status = 10 Expected file-status = 46
Installation of COBOL V5.4 completed at 12:07
Versions Cobol T5.4-51
cobrtl V5.4-14
help!!!
Thanks
ray
|
3196.3 | COBOL$IVP.LIS file not found at run time | PACKED::MASLANKA | | Mon Feb 10 1997 14:41 | 17 |
| Re .2
This message is received when you try to compile, link and run the
VAX COBOL$IVP program without using the /LIST option on the compile
command. When the COBOL$IVP runs it attempts to read the .LIS file
which is created by the /LIST option during the compile. If the .LIS
file is not present at rut run time when the program attempts to
open it, the File-status of 10 is reported to indicate at an optional
file was not found. If the .LIS file were present, the program would
read it until it was exhausted, then would read it again. This last
read would produce the desired (in this case) file-status code of 46.
The COBOL$IVP program is intended to be run in the COBOL$IVP.COM file
which is on the VAX COBOL Version 5.4 distribution kit. You might wish
to examine this .COM file.
Thank you for your expression of interest in VAX COBOL.
|
3196.4 | This is what the COBOL$IVP.COM is doing??? | MIASYS::LALIBERTE | | Tue Feb 11 1997 03:30 | 27 |
| After looking into the COBOL$IVP.COM file and running several test
here is what is happening:
This is the line for OPT-FILE-1
SELECT OPTIONAL OPT-FILE-1 ASSIGN TO "SYS$DISK:COBOL$IVP.LIS.30000".
Note: there is no file of COBOL$IVP.LIS.30000 in this directory only
one of COBOL$IVP.LIS;1
o First they open OPT-FILE-1 which they expect a file status of "05"
which they get and the file exception routine is not executed.
o Next the read OPT-FILE-1 which they expect a file status of "10"
which they get and the file exception routine is executed.
o Next they read OPT-FILE-1 again this time they expect a file
status of "46" which they do not get instead they get "10" the file
exception routine is executed an they report the error.
Note: I have also run the IVP on a AXP system an every thing works
as expected the COBOL$IVP.COM looks like its doing the same thing
as the VAX version???
Thanks!
Ray
|
3196.5 | SELECT OPTIONAL is being tested with "COBOL$IVP.LIS.30000" | PACKED::BRAFFITT | | Tue Feb 11 1997 06:45 | 17 |
| > This is the line for OPT-FILE-1
> SELECT OPTIONAL OPT-FILE-1 ASSIGN TO "SYS$DISK:COBOL$IVP.LIS.30000".
>
> Note: there is no file of COBOL$IVP.LIS.30000 in this directory only
> one of COBOL$IVP.LIS;1
The IVP is testing SELECT OPTIONAL in this case.
Note that there are 2 file specifications involved in the IVP:
PROGRAM-ID. COBOL$IVP WITH IDENT 'COBOL V5.2-35'.
SELECT OPTIONAL OPT-FILE-1 ASSIGN TO "SYS$DISK:COBOL$IVP.LIS.30000".
SELECT FILE-1 ASSIGN TO "SYS$DISK:COBOL$IVP.LIS".
PROGRAM-ID. COBOL$IVP WITH IDENT 'COBOL V5.4-51'.
SELECT OPTIONAL OPT-FILE-1 ASSIGN TO "SYS$DISK:COBOL$IVP.LIS.30000".
SELECT FILE-1 ASSIGN TO "SYS$DISK:COBOL$IVP.LIS".
|
3196.6 | COBOL$IVP works properly | PACKED::MASLANKA | | Tue Feb 11 1997 08:56 | 25 |
| FWIW I just ran the COBOL$IVP.COM from a privileged account on my VAX
workstation, following the instructions in the VAX COBOL V5.4 Install
Guide. This is the recommended procedure for running this IVP. Here
is what I got for output. This is the expected output.
$ @sys$common:[systest.cobol]cobol$ivp
� Digital Equipment Corporation 1994, 1997. All rights reserved.
Restricted Rights: Use, duplication, or disclosure by the U.S. Government is
subject to the restrictions as set forth in subparagraph (c) (1) (ii) of
DFARS 252.227-7013, or in FAR 52.227-19, or in FAR 52.227 -14 Alt. III, as
applicable.
This software is proprietary to and embodies the confidential technology of
Digital Equipment Corporation. Possession, use, or copying of this software
and media is authorized only pursuant to a valid written license from Digital
or an authorized sublicensor.
Successful test of VAX COBOL T5.4-51
$
|