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..?



here is my compile and link edit steps in a jcl //COMPILE1 JOB (3CUS,S),'CCDM TEST' ..

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

Post New Answer

More COBOL Interview Questions

can u plz expain me how to declare dynamic array? what is the meaning of depending on clause in dynamic array?

3 Answers   IBM, Satyam,


Can we redefine the field of x(200) to less than 200?

0 Answers  


how will u find out 3rd week's 2nd day using occurs ?

3 Answers   L&T,


i want to store 20 digits . h will u do it in cobol ?

4 Answers   TCS,


What is the difference between a binary search and a sequential search?

10 Answers  






01 MOVE 10 TO N 05 PERFOM PARA1 TIMES STOP RUN WAT WILL HAPPEN?? WILL IT RUN INFINITELY OR AN ERROR WIL BE THER BECAUSE NO OF TIMES IS NOT GIVEN??

1 Answers  


How many maximum number of procedures can we write in one COBOL program?

5 Answers  


Study the DATA DIVISION entries and the three PROCEDURE DIVISION entries given below: 01 END-OF-FILE-SWITCH PIC XXX. 88 NO-MORE-RECS VALUE "YES". 88 MORE-RECS VALUE "NO". (i) READ SAMPLE-FILE AT END MOVE "YES" TO NO-MORE-RECS. (ii) IF NO-MORE-RECS = "YES" GO TO LAST-PARA. (iii) IF NO-MORE-RECS GO TO LAST-PARA. Which are wrong? (a) (i) and (ii) (b) (ii) and (iii) (c) (i) and (iii) (d) all

5 Answers   TCS,


What is the difference between subscript and index?

1 Answers  


We are using the searching a table which is indexed, once the key is found, how can we get the occurance at which the key was found.

1 Answers  


Write the syntax of a two dimensional array?

8 Answers   Honeywell, Xansa,


what is the difference between perform varying and perform until

4 Answers   TCS,


Categories