What is the error code SOC01 indicate ?
Answers were Sorted based on User's Feedback
Answer / guest
Operation exception error For e.g. a dataset open error
| Is This Answer Correct ? | 17 Yes | 6 No |
Answer / l c sharma
This happens when accept statement is used in COBOL
program for SYSIN but there is no SYSIN defined in the
program.
| Is This Answer Correct ? | 9 Yes | 4 No |
Answer / l c sharma
sorry i meant if SYSIN not defined in JCL and used in
program, SOC1 abend will occur.
| Is This Answer Correct ? | 5 Yes | 4 No |
how can the same proc be re-used and called by many jobs?
when does a dataset go uncataloged?
I have many files which i am receiving from client everyday. I have one step for every file to check for empty or not. Here client gives 30 files i need to check for every file for empty or not and i need to perform 30 steps. Can I do it in single step. Dynamically i need to change the File name in my step.
How to run cobol program using jcl?
Name the statement which can be used to send data to another mvs jes3 node?
Explain the function of the dd dcb keyword?
i have job card like this //job ***** //step1 exec pgm=iebgener //sysut1 dd dsn=main.sss,disp=shr // dd dsn=main1.sss,disp=shr // dd dsn=main2.sss,disp=shr //sysut2 dd dsn=out1.mmm ,disp=(new,catlg,delete) dcb=( ) // sysin dd * like this what i have to do to skip dsn=main1.sss please giveme answer asap
how you can direct the data to spool using SYSOUT option?
Suppose I have five jobs to do. But I want to hold one?
What is one line to pass PARM from JCL to COBOL?
How do you restart a PROC from a particular step?
i have 10,000 records in one input file.i want to sort 1 to 5000 records in one outputfile and remaining records sort in another output file write the syntax for this?