how we rectify soc7 and soc4 errors in project?
Answer / ravi paradkar
SOC4 means address exception
when we are trying to move a value into a variable which is having more length than defined
SOC7 - Data Exception.
eg: when we try to move a non-numeric data into a numeric data item.
| Is This Answer Correct ? | 7 Yes | 0 No |
what will happen if pass values more than 100 using PARM parameter?
Which mode is used to operate the sequential file?
how can you identify wheather the program is using search or search all in the cobol program?
write a cobol logic. i have file that has 10 records .1 record go to first output file and second record goes to 2 output and etc
have in 100 records in a file i want to move only matched records to one output_file1 and nonmathed records are moved to another output_file2 ... any one can provide logic code
can you please let me know if there is any walkins for COBOL/PLI/DB2/IMS/JCL in pune other than IBM and ITC infotech
I want to declare a field with data type Double in my COBOL program. how shall i do that ?
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length
How do you set a return code to the JCL from a COBOL program?
Write the code implementing the perform … varying.
perform I from 0 by 1 until I=5?How maney times it will executes
If A>B next sentence end-if display 1 display 2. display 3. If a>b, it will display only 3.(the next sentence, ie., after fullstop/period) ____________________________________ if a>b continue end-if display 1 display 2. display 3. If a>b, it Will display 1 2 3 (the next statement) ____________________________________ if a>b continue display 1 end-if display 2 display 3. display 4. If a>b, Will it display 2 3 4 (or) 1 2 3 4 ?