how to resolve the soc4 error?
Answers were Sorted based on User's Feedback
Answer / rangarao chitipothu
Storage violation error, can be due to various reasons.
---> Reading a file that is not opened.
---> invalid address reference due to subscript error.
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / satheesh
compile use list option and then select from the compile
listing offset of the record and then made change where you
done error and recompile
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / narendra
Storage violation error, can be due to various reasons.
---> Reading a file that is not opened.
---> invalid address reference due to subscript error.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / satheesh
compile use list option and then select from the compile
listing offset of the record and then made change where you
done error and recompile
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer / naga
soc4 is a data exception error, we trying to move the
(data) alphabetic to numeric data, exception happend, we
avoid this type of move operation.
| Is This Answer Correct ? | 3 Yes | 29 No |
Explain how can values be passed from the job stream to an executable program?
What is the difference between specifying DISP=OLD and DISP=SHR for a dataset?
what happens when time=0 is given in jcl code. what happens when blksize=0 is given in jcl code. what is symbolic and overriding parameters and a example program.
How can unused space allocation be returned to the system when a dataset is closed?
In My job I have 15 procs.and in each proc i have 3 steps. i want to execute 3 step in proc 10.is it possible? if possible how?
In JCL I have 5 steps,I need to execute 1st,2nd and 5th steps only,can any one answer me please?
Statement1 "We can not use UNCATLG in SMS managed VSAM datasets" Statement2 "We can not delete a SMS managed data set without UNCATLG it" (P-353, Saba Zameer book) Then how do we delete SMS managed VSAM datasets ?
TIME parameter in JOB statement or EXEC statement specifies What type of time (CPU time or execution time)?
What does a disposition of (NEW,CATLG,KEEP) mean?
How to pass values in jcl to cobol?
Suppose I have 5 dataset listed under a single DD name in a catlogued PROC. How can I override one of those 5 dataset (say 3rd dataset)?
consider the following progrm statements MOVE 0 TO SW.NO.OF.REC PERFORM PRI-OUT UNTIL SW=1 DISPALY NO.OF.REC STOP RUN PRE-OUT READ IN-FILE AT END MOVE 1 TO SW WRITE OUO-REC FROM IN-REC ADD 1 TO NO.OF REC if the IN-FILE contains 1000 records what value will be displayed after the PERFORM is over? assume that N0.OF.REC has PIC 9(4) a.1000 b.1001 c.1 d.none of the above