How to resolve the soc4 and soc7 errors?
Answer Posted / billyboyo
The general technique for any abend in an IBM Cobol program
is the same. Look at the dump. Find the address of the
instruction that is failing. Find the program the
instruction is in. Find the displacement of the failing
instruction in the program. Find the program statement from
that.
Then, having identified the line of code and the field(s)
involved, work out what got messed up. It could be the
data, it could be your code, it could be someone else's
code. There are even other rare possibilities.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What are the different rules for performing sort operation?
Our issue is there seems to be a disconnect, or no link, between our SELECT statement and our SD. We had SELECT SORT-FILE and SELECT SORT-FILE ASSIGN TO SORTWRK. ASSIGN TO SORTWRK1 SORTWRK2 SORTWRK3 SORTWRK4. with SD SORT_FILE RECORD CONTAINS 7833 CHARACTERS. In either case, at run time, the system ignored our SORTWRK# DD statements and allocated 16 sort works with the SORTWK## naming convention. Any ideas why the system does not recognize the connection? We do not even need the SORTWRK DD statements. Thanks
I have a File that has duplicate records. I need only those records that occur more than thrice.?
Write the code implementing the perform … varying.
What kind of error is trapped by on size error option?
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.
Are you comfortable in cobol or jcl?
What are the cobol coding sheets?
I have File 1 occurs 5 times with Employee-ID,Employee-Name,Employee-Dept (EEE and MECH). I have File 2 occurs 10 times with Employee-ID,Employee-Name,Employee-Dept (EEE,CIVIL,CHEMICAL and MECH). In FIle 1 and FIle 2 , for matching Employee-DEPT (Only MECH) , we need to move entire records from file1 to file 2. We should not use 2D array. Your help is needed here.
what is search and searchall?what is the diffrence between them?give an best example?
What are INPUT PROCEDURE and OUTPUT PROCEDURE?
I have to write to a outfile where the number of records in that file should be the header of that file using IMS.. can anyone help me in this issue
What do you understand by psb and acb?
What is the difference between next sentence and continue in cobol programing language?
Whats the difference between search & search ALL?