I have a cobol db2 program(PGM A) where other program (PGM
B) will call this program and passes some 50 fields data to
PGM A. PGM A has some layout in which it receives the data
from PGM B. And this layout has been copied in the linkage
section pf PGM A. After getting the data, PGM A writes the
data in a flat file in the same layout which it receives
from PGM B. PGM B is a simple COBOL pgm. Please provide a
JCL to run these programs.
No Answer is Posted For this Question
Be the First to Post Answer
//S10 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //CON DD DSN=VAR.INPUT1,DISP=SHR // DD DSN=VAR.INPUT2,DISP=SHR //OUT DD DSN=VAR.OUTPUT,DISP=(NEW,CATLG,DELETE), // SPACE=(CYL,(5,5)),UNIT=SYSDA //TOOLIN DD * * Splice the needed data from the two VB files together SPLICE FROM(CON) TO(OUT) ON(5,5,CH) WITHALL - WITH(12,5) WITH(22,20) VLENMAX /*
What is the purpose of the PARM keyword in the EXEC statement?
Can we change a FB file to VB file in JCL? Please help
What is the function of //cntl statement?
What will happen if we write two STOP RUN's in a COBOL program?
In my JCL 10 Steps Will Be there Now i want to execute step05 And step06. How to Give the Cond?
How many days does a job remain in spool
Explain how can a stopped job be started again?
We have two PS files,want to compare those files and put the duplicate records in one file. Input file 1 contains(1,2,4,9,10) Input file 2 contains (1,4,5,11,12,14,16). Help me with jcl.
How to concatenate different LRECL of files?
How can we increment subscript and index?
A PROC has five steps. Step 3 has a condition code. How can you override/nullify this condition code?