How to resolve the soc4 & soc7
other than following answers.
Soc4 can resolved using mispleed dd name and dd name is not
matching with file
and soc7 check the sysdump and copy the offest address then
correct it in the program.
Answer Posted / sandeep
S0C4 occurs mainly due to protection exception. It means
when you are using subcripts for example my subsripts range
is 11 but I am trying 12 & your compiler option is ssrange
you got soc4 error.
Is This Answer Correct ? | 57 Yes | 6 No |
Post New Answer View All Answers
) what is the difference between AID and HANDLE AID?
Which is the default, TEST BEFORE or TEST AFTER for a PERFORM statement?
In COBOL programming, what is PERFORM? What is VARYING?
) How do u handle errors in BMS macro?
What is the difference between structured cobol programming and object alternativelyiented cobol?
Write a program to enter and display the names of students in a class using the occurs clause.
What is the difference between next sentence and continue in cobol programing language?
Write a program that uses move corresponding.
What are various search techniques in cobol? Explain.
What is a scope terminator give example?
How to fetch 1000 error records from VSAM file(Eg: 1000000 records present) while getting SOC7 abend ?
How to get the last record in vsam file in cluster? And how can you get the ksds file records into your cobol program?
what is amode(24), amode(31), rmode(24) and rmode(any)?
How to find out the closest prime number of an input number? I believe it has something to do with SEARCH and COBOL Linear Array.
I have a program with an Array of 5000 occurences which is being passed from 5 sub levels to the front end screen. Thess 5 programs using each 5*2 = 10 different arrays with size as 5000. This is causing the transaction to utilize more storage consupmtion. I am looking to reduce the storage consumption. As part of that initially i thought Dynamic array may solve my problem. After viewing the comments given i see its same as normal array. IS there any other way we can resolve this issue?