Can comments be specified at the very beginning of a
jobcard? Will the JCL execute?

Answer Posted / kk

no.job not run error & adend code 007 will come

Is This Answer Correct ?    6 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

If a (+1) generation dataset is created in the first step of a job, how can it be referenced in later steps of the same job for input?

798


Describe the various parameters utilized in the creation of a gdg?

697


How to submit jcl through a cobol program?

692


How can the disposition of sysout datasets be set for an entire jobstream?

859


how you will the direct the data to spool using sysout option?

1779






How to read and write a single record into a file. I would like to use it to enter a single 8-character piece of information and use it to put it into a variable for processing in JCL. Thank you

618


what is the JCL statement consists of?

711


WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375

1059


What is the function of a dd statement?

719


Is it possible to code instream data in a PROC?

773


In sms datasets, what is the function of the dd mgmtclas keyword?

873


Matching Logic in Jcl not in cobol.Could any one please answer this question

3693


Is there any command to check wether the ps file is in sorted order?

2443


Explain the function of //cntl statement?

666


I want to JCL sort for Non-COMP and COMP-3 fields SORT FIELDS=(1,5,A,6,11,A,12,11,A,19,1,A,20,1,A),FORMAT=BI,EQUALS Length of comp bytes is 11 bytes which start at 6byte and 12 byte considering 11 bytes in comp-3 is 6 bytes. Can anyone tell if the above sort work SORT FIELDS=(1,5,A,6,6,A,12,6,A,19,1,A,20,1,A),FORMAT=BI,EQUALS does not works OK

1494