What does SYSIN * indicate?
Answers were Sorted based on User's Feedback
Answer / guest
Instream data follows this card and is terminated when
followed by a card containing // or /* in columns 1 and 2.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / sariputi
It is one of the DD statement,through which we can give
the instream Data(Input)required for the job.
EXAMPLE:
//SYSIN DD *
COPY I=DD1,O=DD2
/*
| Is This Answer Correct ? | 6 Yes | 0 No |
How to find in aparticular step how many versions a paricular gdg base have?
I HAVE A SEQUENTIAL FILE CONTAINING ONE RECORD IN WHICH I HAVE ONE FIELD AS CUSTOMER IDENTITY NUMBER FIELD WHICH IS A SIGNED FIELD. HOW TO SEQUENTIALLY INCREMENT THIS FIELD USING OVERLAY PARAMETER?.
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
How to submit multiple jobs. These jobs are members in PDS. The second job should run if the first job runs successfully and so on.
What statement marks the beginning of a job step; assigns a name to the step; identifies the program or catalogued or in-stream procedure to be executed in the step?
WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move
What is the significance of addrspc parameter in the exec statement?
I have 5 generations in my GDG. How do I code in the JCL to consider all the 5 versions of the GDG ?
When should DISP=MOD is used?
which parameter is used to check the syntax of a jcl without executing it?
How to skip first step of a job? Can we use COND on the first step?
What is the use of DUMMY statement in the JCL? What is the use of DUMMY Utility in the JCL?