sankarikrishnakumar


{ City } chennai
< Country > india
* Profession * b.e(cse)
User No # 6090
Total Questions Posted # 0
Total Answers Posted # 4

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 57
Users Marked my Answers as Wrong # 34
Questions / { sankarikrishnakumar }
Questions Answers Category Views Company eMail




Answers / { sankarikrishnakumar }

Question { 11262 }

How is the keyword DUMMY used in JCL?


Answer

//sysin dd dummy

dummy- statements are not actually executed, used for
testing environment

Is This Answer Correct ?    2 Yes 4 No

Question { 82011 }

What is 'S0C7' abend?


Answer

bad data abend, as explained in previous answer.

Is This Answer Correct ?    41 Yes 11 No


Question { TCS, 39975 }

What does the TIME parameter signify ? What does TIME=1440
mean ?


Answer

TIME parameter specifies the cpu time utilized for the
entire job. if the job exeeds the specified time then s322
abend occur.
1440 - 24 hrs

Is This Answer Correct ?    14 Yes 16 No

Question { 12868 }

I have 20 steps in a job... step01, 02....step17...step20.
For some reason I want to execute step17 only if the return
code for all the previous steps are less than or equal to 4.
otherwise if return code for any of the previous 16 steps
is greater than 4, then step17 should be bypassed. How do I
do that ?? how and in which step should i formulate COND
parameter


Answer

step 17 wil execute only if cond is false so u can it as
//step17 .... cond=(4,gt) in 17th step

suppose if u give cond=(4,lt) then step 17 will not
execute it will just by pass if cond satisfies((i.e.)4,lt)

Is This Answer Correct ?    0 Yes 3 No