Re: S013-C0 while compiling OO COBOL program using a job step.

2007-07-10 Thread Nagesh
Hello all, Mr William Klien answered in comp.lang.cobol forum that I had to modify the SYSJAVA DD name to : //SYSJAVA DD PATH='/u/userid/java/&SRC..java', //PATHOPTS=(OWRONLY,OCREAT,OTRUNC), //PATHDISP=KEEP, //PATHMODE=SIRWXU,

Re: S013-C0 while compiling OO COBOL program using a job step.

2007-07-09 Thread Big Iron
Note that, even after an unsuccessful run, an HFS file will be created, as long as the permissions on the directory allow it. If you list the files in that directory, do you see a .java file? Bill On Mon, 9 Jul 2007 10:33:34 +1000, Nagesh <[EMAIL PROTECTED]> wrote: >Hi Bill, >No, there is no exi

Re: S013-C0 while compiling OO COBOL program using a job step.

2007-07-09 Thread Big Iron
The value reported for the access allowed for the owner in the message is "(OWNER ---)" or no access. You might try modelling your JCL after that suggested by the manual: //SYSJAVA DD PATH='/u/userid/java/Classname.java', // PATHOPTS=(OWRONLY,OCREAT,OTRUNC), // PATHMODE=SIRWXU, // FI

Re: S013-C0 while compiling OO COBOL program using a job step.

2007-07-08 Thread Nagesh
Hi Bill, No, there is no existing file. "Your PATHMODE seems OK but doesn't match the value reported for access allowed for file owner in the message." I didn't quite follow you there. Shouldn't the PATHMODE value of SIRWXG and SIRWXO allow files to be created ? Regards, Nagesh ---

Re: S013-C0 while compiling OO COBOL program using a job step.

2007-07-08 Thread Big Iron
Is it possible that there is already an existing HFS file with the same name and incompatible permission bits? If so, you should try deleting it. Your PATHMODE seems OK but doesn't match the value reported for access allowed for file owner in the message. Bill On Sun, 8 Jul 2007 13:59:30 +1000, N

S013-C0 while compiling OO COBOL program using a job step.

2007-07-07 Thread Nagesh
Hi, I am trying to compile my OO COBOL program on z/OS using JCL. The program has been written in a HFS file. I am getting this message : IEC141I 013-C0,IGG0199G,S611204C,STEP1,SYSJAVA ACCESS INTENT(RW-) ACCESS ALLOWED(OWNER ---) EFFECTIVE UID(000237) EFFECTIVE GID(000191) wher