Mainframes gets a text file that contains the name of the
file. Now using JCL i want to locate that file name in the
mainframe system and perform further processing. Please tell
how to proceed
No Answer is Posted For this Question
Be the First to Post Answer
What is timing concept in mainframe?
Is CPU time assigned to a JOB and JOBSTEP BOTH, by default ?
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?
is there any utility for restarting a particular step in jcl reply soon ?
I have two files each contains 10 records. I would like to copy both files into one output file but in alternate sequence. for e.g. first record from file1 then record 2 from file2.....
What are the differences between JES2 & JES3 ?
what is the general use of PARM? Give an explanation about the system defined parameters that could be passed through this PARM like XREF,LIST,LET,APOST,RENT etc..
//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 static and dynamic call with examples?
Ques: How can we code COND parameter in a JCL so that only even steps (or only odd steps) get execute??
I have a job called careerride and some steps in it as step1,step2. But I want to execute step2 before step1 ? How do I do that?
how to write a jcl prog to copy alternate recs from ps1 to another ps2,suppose ps1 having 10 recs?