ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
info       Did you received any Funny E-Mails from your Friends and like to share with rest of our friends? Yeah!! you can post that stuff   HERE
Google
 
Categories  >>  Software  >>  MainFrame  >>  IBM MainFrame  >>  JCL
 
 


 

 
 COBOL interview questions  COBOL Interview Questions
 JCL interview questions  JCL Interview Questions
 CICS interview questions  CICS Interview Questions
 DB2 interview questions  DB2 Interview Questions
 IMS interview questions  IMS Interview Questions
 IDMS interview questions  IDMS Interview Questions
 Natural interview questions  Natural Interview Questions
 ADABAS interview questions  ADABAS Interview Questions
 REXX interview questions  REXX Interview Questions
 Assembler interview questions  Assembler Interview Questions
 CLIST interview questions  CLIST Interview Questions
 QMF interview questions  QMF Interview Questions
 MVS interview questions  MVS Interview Questions
 OS390 interview questions  OS390 Interview Questions
 OS 2 interview questions  OS 2 Interview Questions
 VSAM interview questions  VSAM Interview Questions
 QSAM interview questions  QSAM Interview Questions
 Sysplex interview questions  Sysplex Interview Questions
 IBM MainFrame AllOther interview questions  IBM MainFrame AllOther Interview Questions
Question
What are the causes for S0C1, S0C4, S0C5, S0C7, S0CB abends ?
 Question Submitted By :: Guest
I also faced this Question!!     Rank Answer Posted By  
 
  Re: What are the causes for S0C1, S0C4, S0C5, S0C7, S0CB abends ?
Answer
# 1
S0C1-May be due to 1.Missing or misspelled DD name
2.Read/Write to unopened dataset 3.Read to dataset opened 
output 4.Write to dataset opened input 5.Called subprogram
not found

S0C4-may be due to 1.Missing Select statement(during
compile) 2.Bad Subscript/index 3.Protection Exception
4.Missing parameters on called subprogram 5.Read/Write to
unopened file 6.Move data from/to unopened file

S0C5-May be due to 1.Bad Subscript/index 2.Closing an
unopened dataset 3.Bad exit from a perform 4.Access to I/O
area(FD) before read

S0C7-may be due to 1.Numeric operation on non-numeric data
2.Un-initialize working-storage 3.Coding past the
maximum allowed sub script

S0CB-may be due to 1.Division by Zero
 
Is This Answer Correct ?    16 Yes 3 No
Guest
 
  Re: What are the causes for S0C1, S0C4, S0C5, S0C7, S0CB abends ?
Answer
# 2
ALL ARE ABENDSSS
 
Is This Answer Correct ?    5 Yes 13 No
Varun
 
 
 
  Re: What are the causes for S0C1, S0C4, S0C5, S0C7, S0CB abends ?
Answer
# 3
S0CB -this is also the space abend.(ie)Due to unavalability 
of enough space.
 
Is This Answer Correct ?    4 Yes 3 No
Tom
 
  Re: What are the causes for S0C1, S0C4, S0C5, S0C7, S0CB abends ?
Answer
# 4
B37 - Runtime ABEND usually encountered when writing to a 
file and running out of space allocated in the dataset 
paramemters of the DD statement.
 
Is This Answer Correct ?    3 Yes 1 No
Brian
 
  Re: What are the causes for S0C1, S0C4, S0C5, S0C7, S0CB abends ?
Answer
# 5
I completely agree with Answer 1.
Just to add to B37 abend (while agreeing to it) - 
we get abends like SB37, SD37 etc.
Actually S is for system, 37 denotes the space abend.
But the 2nd alphabet B is for blocks, D is for DASD 
etc...the unit of colume for which the space parameter has 
been defined..This helps to resolve a lot of confusions :-)
 
Is This Answer Correct ?    0 Yes 0 No
Aap
 

 
 
 
Other JCL Interview Questions
 
  Question Asked @ Answers
 
IN-STREAM DATA NOT ALLOWED IN PROC how can come out from this problem  6
I need to compare two VSAm files. In input VSAM file some fields are updating and the updated feilds are coming into the output file. now i need to compare these two files with respect to a perticular field. Please suggest a suitable JCL code me. Cognizent1
There are two steps in a JCl, the first one generates a report while the second step send an email saying the report has been generated, but the second steps should only be executed when the report file is non-empty. How can it be acheived. We may include steps in between.  3
What does the TIME parameter signify ? What does TIME=1440 mean ? Accenture3
can u execute a proc from another proc? Logica-CMG5
What is QSAM error usually when it is occurs?  1
Hi, I have a requirement File A : I have 6 records out of which 4 are same. File B: I have 8 records out of 6 records are same. The 4 records in FILEA and 6 records in FILE B are same. If we substract we will get two records, I need these two records in output file This is because to remove the duplicates from the database. Through easytrieve we can compare but for that there should not duplicates, but in my file I have duplicates. Thanks in advance!!  2
What is a Proc ? why do we go for a Proc ? What are the types of procs?Can we have nesting in Procs ? Xansa9
What are the valid DSORG values ?  2
What do you do if you do not want to keep all the space allocated to a dataset?  2
//{name} INCLUDE MEMBER=memname {comments} in the include statement, what actually happens when its executed? The membername conatains a list of valid JCL statements, so will the include statement be substituted by these statements and how can we mention the pds that conatains the member? How does the include group differ from a PROC? how is include statement connected to JOBLIB and STEPLIB? CTS2
What is the max blocksize for a Tape file?  2
Is it possiable to use a gdg in the INCLUDE statement in a SORT jcl? I am using this because I want to change the condition with out changing the jcl. Please provide with a sample code.  1
How to identify where file is empty or not? How many ways are there to identifying? CTS1
If i have defined an temperory dataset in step2, how can i call back or use the same dataset in step5 of the same job UST4
THERE IS ONE STEP AS BELOW: //STEPJS060 EXEC PGM=XYX, COND=((200,EQ,JS010),(0,NE,JS020.C),EVEN) COULD ANY ONE EXPLAIN HOW COND PARAMETER WORKS HERE? I AM CONFUSED BECOZ OF "EVEN".  2
I have 2 steps in my exec statement , in first step I am creating a gdg, and the output of this step is going into second step as a input, and this second step is abended , now how could i approach in this case. Bank-Of-America3
how do you resolve for soc7 error ACS4
What is SORT ? How do we eliminate duplicate records ? How do I select some records using SORT ? Xansa4
The maximum number of steps in a job?  3
 
For more JCL Interview Questions Click Here 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com