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 |
how to display date in reverse order if the pic clause of the is numeric suppose date is 09032010 ==> need to print in 20100309 (pic clause is numeric)
consider the following piece of code 01 GROSS-PAY 05 BASIC-PAY PIC 9(5) 05 ALLOWENCES PIC 9(3) if BASIC-PAY has a value 1000 and ALLOWENCES has a value of 250,what will be displayed by the statement DISPLAY GROSS-PAY a.1250 b.01000250 c.01250 d.1.250
what is difference between cobol and cobol/400
When can the USING phrase be included in the call statement ?
WE HAVE 5 DIFFERENT RECORDING MODE IN COBOL.FIXED, FIXEDBLOCK, VARIABLE, VARIABLEBLOCK AND UNDEFINED. WHAT IS THE DIFFERENCE AMONG ALL AND WHICH TYPE OF FORMAT SHOULD BE USED WHEN
period is missing in the cobol program which error we getting
What is the output generated by the following code? 01 GRP-I. 05 SUBFLD1 PIC XX VALUE "AB". 05 FILTER PIC X(6) VALUE SPACES. 01 GRP-2 REDEFINED GRP-1. 05 SUB-FLD2 PIC XX. 05 SUB-FLD3 PIC XX. 05 FILTER PIC X(4). IF SUB-FLD1 NOT = SPACES DISPLAY "SUBFLD1" MOVE "ABBCCD" TO GRP-1 IF SUB-FLD3 = SPACES DISPLAY "SPACES" ELSE DISPLAY "SUBFLD3" DISPLAY "END" ELSE DISPLAY "SPACES" DISPLAY "END". (a) SUBFLD1 SUBFLD3 END (b) SPACES END (c) SUBFLD1 END (d) SUBFLD1 SPACES
Define cobol?
hi dudes.....can any one help me..... what is SET TO TRUE all about,anyway?
is it possible to declare index in cobol program? if it is not why its tell me pls
can we use reference modification an arry.
DATAONLY, MAPONLY functionality?