Question:
What is abend s322
Answer:
S322 means the system has run out on the CPU time and the job is being cancelled. My first guess is, check your program if it went into any infinite loop, if not try to change the class and Time keyord parameters in the JCL. If you still get the Abend I would say you have a problem in your COBOL program... check the loops..
Source: CoolInterview.com
322 means the system has run out on the CPU time and the job is cancelled. Check your program if it went into any infinite loop, if not try to change the class and Time keyord parameters in the JCL. If you still get the Abend then give 'Time =1440' in Job card Source: CoolInterview.com
Answered by: kishore | Date: 11/27/2009
| Contact kishore
if job runs more than allowed time,then it will abend with system abend code s322. Source: CoolInterview.com
Answered by: srinivas | Date: 1/11/2010
| Contact srinivas
Basically s322 is timeout abend this means job as taken probably long time to execute i.e., more than alloted CPU time, so to overcome this abend we can specify Time=1440 parameter on Jobcard or if it for specific job step then we can specify Time parameter on Exec statement. Source: CoolInterview.com
Answered by: ssh | Date: 6/3/2010
| Contact ssh
s322,when it will occur this abend,cpu time not sufficent to run this job. Source: CoolInterview.com
Answered by: maheshallulla | Date: 6/21/2010
| Contact maheshallulla
s322 indicates Timeout abend. If a program has taken more CPU time than the default limit for the job class, s322 abend occurs To overcome s322 we have to specify TIME=1440 Source: CoolInterview.com
Answered by: Lakshmi | Date: 6/23/2010
| Contact Lakshmi
u hav not given the enough time for the job. so change trhe time parameter. or give time as 0 Source: CoolInterview.com
Answered by: sweety | Date: 8/7/2010
| Contact sweety
s322 abend code indicates the cpu time out and the job is been cancelled. At this point, we can give 'TIME=1440', which is the default time parameter for the job to run. 'TIME=MAXIMUM' can also be given since the job can take the maximum amount of time to get executed. Source: CoolInterview.com
Answered by: Lydia Sindhuja | Date: 8/20/2010
| Contact Lydia Sindhuja
s322 ABEND MEANS JOB OR STEP TIME EXCEEDED THE SPECIFIED LIMIT
THE REASON FOR THIS ABBEND CAN BE *PROGRAM IS IN A LOOP *INSUFFICIENT TIME PARAMETER ON JOB OR EXEC CARD Source: CoolInterview.com
Answered by: Guru prasad .M. Gowda | Date: 9/1/2010
| Contact Guru prasad .M. Gowda
s322 means cpu time out error
s222 means user cancel the job
s122 means operation cancel the job
Source: CoolInterview.com
Answered by: k.mallikarjunareddy | Date: 3/23/2016
| Contact k.mallikarjunareddy
TIME:it specifies the max time allocated for the execution of job or step. if the specified time is not enough for the execution of job or step then you will get an abend called S322 Source: CoolInterview.com
Answered by: SAI PRASAD | Date: 6/23/2016
| Contact SAI PRASAD
If you have the better answer, then send it to us. We will display your answer after the approval.
Rules to Post Answers in CoolInterview.com:-
- There should not be any Spelling Mistakes.
- There should not be any Gramatical Errors.
- Answers must not contain any bad words.
- Answers should not be the repeat of same answer, already approved.
- Answer should be complete in itself.
|