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 Posted / 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 View All Answers
what is amode(24), amode(31), rmode(24) and rmode(any)?
Name the sections present in data division.
What kind of error is trapped by on size error option?
1.Is it possible to move the data from 99.99 to 99v99? 2.What is the CICS-vsam Compilation process? 3.In My GDG 5 generation will be there GDG3 got an abend what will happen? 4.In my GDG first generation is +1 And I want to add the new generation what will happen previous generation? 5.How can you give the PIC clause below conditions A). s9 (reddy), B). s9 (5) occurs 5 times? 6.How override the proc from a particular step? and what is symbolic and override Procs?
Write a program that uses move corresponding.
explain sorting techniques in cobol program?
What is a report item?
Write a program to enter and display the names of students in a class using the occurs clause.
How to remove 2 duplicate records and copy only one using job control language?
I have a File that has duplicate records. I need only those records that occur more than thrice.?
I have one ps file in which there are 3 fileds emp_no,emp_name and leave_app.this ps file information give the detail of employee which is going to apply for leave.suppose emp_no=113430,emp_name=ajay,leave_app=1 that means he is going to apply for 1 day leave.and accordingling the table in db2 will be updated means if he has that no of leave in his account then he will get dat leave and updated acc. in table(leave_balance=previous leave present in table-leave_app).Now i want to check whther the updated result is correct or not by comparing the two ps file using IEBCOMPARE or icetool so what is going to be the two ps file and how its is going to be compare.
What are the various section in data division and briefly explain them.
What do you understand by psb and acb?
What is link edit in cobol?
There are 5 fields and 1000 records in a file. Unload it into an array. Write the syntax for declaration and how will you unload it.