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 we put move statement in COBOL copybook

3 Answers   Global Logic,


01rec1. 05 a pic 999v99 value 123.12 05 b pic 99v9 value 45.9 02 rec2. 05 x pic 999v99 05 y pic 99v99 05 z pic x(3) value 'abc' if rec1 is moved to rec2 then what is the value of rec2?

5 Answers   Amdocs,


How do we get current date from system with century?

2 Answers  


How to delete leading spaces/blank in COBOL ? Example:- 01 data-name-1 pic x(220) " English is a language". I would like to delete leading spaces.

7 Answers   Financial Services,


how can we code index in an array of cobol pgm?

1 Answers   Wipro,






What guidelines should be followed to write a structured cobol prgm?

0 Answers  


What are the different rules for performing sort operation?

0 Answers  


What does the INITIALIZE verb do?

1 Answers  


what is the difference between PA & PF keys?

1 Answers   IBM,


can u give result for the fallowing example... 05 a pic 9(2) 05 b redifines a pic x(2). move 'xy' to b. display a,b.

10 Answers   IBM,


wht is load module and object module ?

2 Answers   DELL, TCS,


How do you code cobol to access a parameter that has been defined in jcl? And do you code the parm parameter on the exec line in jcl?

0 Answers  


Categories