I am having one step in my jcl.in that step,i am calling one
proc.In that proc,i have 10 steps.i want to call a particular
step in that proc without writing any new jcl ike iebedit
utility...
Answers were Sorted based on User's Feedback
Answer / guest
1)Please use the Restart parameter in the job card (for
example Restart=jobstep.procstep)
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / venkat ramana
IN THIS CASE, CODE THE CONDITION PARAMETER ON THE JOB
STATEMENT IN SUCH A WAY THAT IT WILL BYPASS ALL THE STEPS
IN THAT JOB.
COND = (0,LE)
AND FOR WHAT EVER THE STEP YOU WANT EXECUTE, WRITE THE
BELOW COND PARAMETER
COND.STEPNAME (NAME OF THE STEP YOU WANT TO EXECUTE) =
(0,GT)
| Is This Answer Correct ? | 1 Yes | 3 No |
I had Records in file Like this Company Code IBM 2 IBM 1 IBM 4 WIPRO 3 WIPRO 2 WIPRO 9 TCS 4 TCS 6 TCS 3 i want the record of every company with highest code How can i do that?
i have a jcl in which 4 & 5 step creates a new generation. 4th step output is as input for the 6th step & 5th step output is used as input in the 7th step. How they are refered as in the 6th & 7th steps? If the job abends in 6th step then how the 5th step output is refered in 7th step?
how can we merge two input files from two different jobs into one output file ? Please ans any one ASAP?
My JCL has 4 steps that execute PROC’s P1, P2, P3 and P4 as shown below //P1 EXEC PROC=P1 //P2 EXEC PROC=P2 //P3 EXEC PROC=P3 //P4 EXEC PROC=P4 There are four steps S1, S2, S3 and S4 in each PROC’s (i.e. P1, P2, P3 and P4) I want to execute only step S2 of PROC P2 and no other steps or PROC’s. How do you achieve this?
Suppose there are 2 Input files Infile-1 and Infile-2. Both the Files contain Employee Records. You need to compare both the files and Write the Common Records in third file named Outfile. How can we do this using File-Aid?
what is the job entry system used in your project?
How to exclude the duplicate records from two concateded flat files (records from both files must be removed)?
I have a job (4 steps) with time parameter coded in job & exec, say time=10 in job & time =3,2,2,4 in each steps. Will the job executes successfully?
In a JCL if previous steps return code is greater than 0 or 4 then the next step will not execute. But the job will be successfull with the maximum return code. How can we reset this maximum return code to '0' regardless of return codes of any steps?
Explain how can values be passed from the job stream to an executable program?
How do you check the syntax of a JCL without running it?
what if any ,is the syntax error in the following piece of code 01 B PIC A(7) 02 C PIC 9(4) ........ IF(B NUMERIC) ADD 10 TO C a.the condition in the if statement is wrong b.noting is wrong c.because C is initialised.ADD 10 TO C is wrong d.both B and C shoud have same size.