here is my compile and link edit steps in a
jcl
//COMPILE1 JOB (3CUS,S),'CCDM TEST'
//STEPNAME EXEC PGM=IGYCRCTL,PARM='DYNAM,RENT,LIB,OBJECT,
// OFFSET,APOST,OPTIMIZE',REGION=4096K
//STEPLIB DD DSNAME=PM7351.TEST2.COB,DISP=SHR
//SYSIN DD DSNAME=PM7351.TEST2.COB(PGM1),DISP=SHR
//SYSUT1 DD UNIT=SYSDA,SPACE=(10,(10,10))
//SYSUT2 DD UNIT=SYSDA,SPACE=(10,(10,10))
//SYSUT3 DD UNIT=SYSDA,SPACE=(10,(10,10))
//SYSUT4 DD UNIT=SYSDA,SPACE=(10,(10,10))
//SYSUT5 DD UNIT=SYSDA,SPACE=(10,(10,10))
//SYSUT6 DD UNIT=SYSDA,SPACE=(10,(10,10))
//SYSUT7 DD UNIT=SYSDA,SPACE=(10,(10,10))
//SYSPRINT DD SYSOUT=*
//SYSLIN DD DSNAME=&&LOAD,DISP=(MOD,PASS),UNIT=SYSDA,
// SPACE=(10,(10,10)),DCB=BLKSIZE=400
//LKED EXEC PGM=IEWL,REGION=1024K
//SYSPRINT DD SYSOUT=A
//SYSLIB DD DSN=PM7351.TEST2.LOADLIB,DISP=SHR
// DD DSN=PM7351.TEST2.COB(PGM1),DISP=SHR
//SYSLMOD DD DSN=PM7351.TEST2.LOADLIB,
// DISP=SHR
//SYSUT1 DD UNIT=SYSDA,DCB=BLKSIZE=1024,SPACE=(CYL,(1,1))
//SYSTERM DD SYSOUT=*
//SYSLIN DD DSN=&&LOAD,DISP=(OLD,DELETE)
//SYSIN DD DUMMY
i am getting IEW2013I 0F08 NO MEMBER NAME WAS SPECIFIED.
MODULE WAS SAVED USING TEMPNAM1.
could any one tell me the resolution for this..?
Answer / prajakta
//SYSLMOD DD DSN=PM7351.TEST2.LOADLIB,
// DISP=SHR
In this step, provide the member name in the loadlib.
Because it has not been provided, the system is saving the load module as Tempname1
| Is This Answer Correct ? | 2 Yes | 1 No |
whats the difference between search and search all?
How do get the result of your program directly on your pc?
Explain Restart Logic in Cobol?
Difference between array and sub-script ?
diffrence between renames and redifnes with examples
I have a cobol program with a sub program. How ca i find that it is a dynamic call? or static call..?
I want ALL jcl ERROR cods
Differentiate cobol and cobol-ii. (Most of our programs are written in cobolii, so, it is good to know, how, this is different from cobol)?
input:- A 10 20 30 40 B 5 7 10 14 C 8 12 14 16.... output:- A = 100,B=36,C=50. Here spaces are considered between numbers. When we give input as above, the numbers should be added n displayed.So please help me out.
I HAVE FOLLOWING DECLARATION. 02. A PIC X(10) VALUE 'XXXXXXXXXX'. 02. B REDEFINES A. 05. C PIC X(3). 05. D PIC X(3). 05. E PIC 9(3). IN MY PROG, I HAVE MOVE 1 TO E. DISPLAY A. WHAT WILL BE DISPLAYED AS A RESULT OF THIS? PLEASE EXPLAIN THE ANSWER. THANKS.
What is the file organization clause ?
What divisions, sections and paragraphs are mandatory for a COBOL program?