What is a S0C4 error ?
Answers were Sorted based on User's Feedback
Answer / guest
Storage violation error - can be due to various reasons.
e.g.: READING a file that is not open, invalid address
referenced due to subscript error.
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / sathya
S0C4
Storage related problem. Check your linkage section, table
definition, and FD section.
| Is This Answer Correct ? | 7 Yes | 0 No |
I have a COBOL program that ACCEPTs some input data. How do you code the JCL statement for this?
Are there any set of rules for the names of the steps used in a job? What are they?
Suppose a proc step has a DD statement like //ABC DD DSN=TEST.FILE1,DISP=SHR DSN=TEST.FILE2,DISP=SHR and the above DD name is overridden from the JCL as given below //procstepname.ABC DD DSN=TEST.FILE3 - Will the DD statement now have just TEST.FILE3 or it will be TEST.FILE3 and TEST.FILE2? Suppose if it is overridden twice like //procstepname.ABC DD DSN=TEST.FILE3 //procstepname.ABC DD DSN=TEST.FILE4 Will this give a JCL error? If not, what will be final output?
What are the basic JCL Statements for a Job?
i have step1,step2,step3 from where can i start coding cond parameter ?
How to compare 2 files using File-Aid?
Suppose I have five jobs to do. But I want to hold one?
What is the difference between the positional and keyword parameters? Give examples.
if my GDG limit has been kept as 50 and if am trying to put 60 records.what would happen. will there be any abend for this scenario
How to check empty file in jcl?
When will we need to specify Space parameter ?
JCL Example: // //RUNJCL JOB CLASS=5,MSGCLASS=6,NOTIFY=&SYSUID //STEP01 EXEC PGM=IEFBR14 // .. .. If this JCL will run or it'll throw the ERROR?