what is d/f b/w sysout & sysprint
Answers were Sorted based on User's Feedback
Answer / venkat
SYSPRINT.
all the error messages along with the source code will be
stored after the compilation.
SYSOUT.
the output and the system messages on program abend will be
routed to sysout.
| Is This Answer Correct ? | 11 Yes | 7 No |
Answer / rams
sysout: to route the output to destination i.e., which
class name u mentioned like A,B,C,D....1,2,3,4...
SYSPRINT: TO PRINT THE OUTPUT ,WHICH IS TAKEN FROM ABOVE
CLASS
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / mdvasanth86
SYSOUT -> Output related to the Program being executed in
the job.
SYSPRINT -> Output of the job itself (JCL) that is executing
some program.
| Is This Answer Correct ? | 1 Yes | 0 No |
how do u define a file in cobol and jcl ?
We have an output dataset in job with disp parameter as SHR. Can we write data in that file dataset?
We have two PS files,want to compare those files and put the duplicate records in one file. Input file 1 contains(1,2,4,9,10) Input file 2 contains (1,4,5,11,12,14,16). Help me with jcl.
what disp parameter we mention for creation of temporary dataset so that we can use it in later steps?
How different is the JCL executing a COBOL program? 1) if the program is using VB file as input. 2) if the program is using FB file as input.
whats the diff bw the evaluate also and and?
I want my job (careerride) to be executed in 1 minute and 2 seconds. How do I do that?
What is the function of //cntl statement?
Is Default for MSGCLASS = (1,1) ?
Please go thru the below points and let me know how to code this. 1. Sort the input dataset for the condition : Starting position is 37,length of the field is 13 based on character and in the ascending order , starting from position 25 length of 12 ,character and in the ascending order. Use a temporary dataset to hold the sorted file. 2. Use the temporary file created in the above step as the input for the next step. The next step is to execute a program and produce an output file. Use the temporary file created in the above as work file 1 and the output of the file to be created in this step work file 2.Also, pass a parameter to the program that is to be executed in this step. The parameter should have the current date in YYYYMMDD format. For the sake of convenience, you can use the below Job Name : Sample1 Input DSN : PCABDT11.CABD.TEST.INPUT Temporary DSN : Sort1 Output DSN : PCABDT11.CABD.TEST.OUTPUT Program Name : SAMPLE Thanks in Advance for your response.
What is use of restart and how to use it?
Is there any command to check wether the ps file is in sorted order?