How many types we can give input to JCL
Answers were Sorted based on User's Feedback
Answer / vampires
2 types we can give input to jcl
---using PARAM keyword
---sysin dd *
xxxxxx
yyyyy
zzzzz
/*
| Is This Answer Correct ? | 17 Yes | 4 No |
Answer / bhaskar reddy
1.using PARM parameter
2.using sysin dd *
through parm parameter we can pass the date to linkage
section. and we can pass only 100 charcters of data
through sysin dd * we can pass the data to accept statement.
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / muneer---achi
using files
using sysin dd *
using control cards
using files
using db2
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / suresh
only one type through returncode
sin dd,parm and files are inputs for cobol pgm
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / hari
3 types we can give
numeric
alpha numeric
alphabets
| Is This Answer Correct ? | 2 Yes | 37 No |
Which dd parameters are required?
01 GROUP-ITEM 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP MOVE ZERO TO GROUP-ITEM ADD 50 TO AMOUNT-1 what will be the content of AMOUNT-1? a.50 b.100 c.0 d.unpredictable
what is the JCL statement consists of?
how can we pass parameters from JCL to cobol subprogram...my requirement is i should not get data from mainprogram but i need it from JCL directly
please could u tell me the difference between SORT, SYNCSORT,CA-SORT, DFSORT,
i have a jcl in which 4 & 5 step creates a new generation. 4th step output is as input for the 6th step & 5th step output is used as input in the 7th step. How they are refered as in the 6th & 7th steps? If the job abends in 6th step then how the 5th step output is refered in 7th step?
What is GDG?
How does jcl act on a cobol code?
How to execute 2nd and 4th steps among 5 steps in jcl proc?
what is use of disp parameter in dd statement?
The disp in the JCL is MOD and the program opens the file in OUTPUT mode. What happens ? The disp in the JCL is SHR and the pgm opens the file in EXTEND mode. What happens ?
Suppose i have a file with 10 recs and i want to skip only the 7 th record and copy the rest into another file. How do i do it using SORT?