how will u code parm parameter and where pls ?
Answer Posted / rakesh reddy
In JCL
//step1 exec pgm=cobprog,parm='abcdef'
In COBOl
LINKAGE SECTIN.
01 PARM-FIELD.
05 PARM-LENGTH PIC S9(4)comp.
05 PARM-VALUE PIC X(6).
PROCEDURE DIVISION USING PARM-FIELD.
abcdf will reflect in PARM-VALUE
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
1.Is it possible to move the data from 99.99 to 99v99? 2.What is the CICS-vsam Compilation process? 3.In My GDG 5 generation will be there GDG3 got an abend what will happen? 4.In my GDG first generation is +1 And I want to add the new generation what will happen previous generation? 5.How can you give the PIC clause below conditions A). s9 (reddy), B). s9 (5) occurs 5 times? 6.How override the proc from a particular step? and what is symbolic and override Procs?
Which division and paragraphs are mandatory for a COBOL program?
There are 5 fields and 1000 records in a file. Unload it into an array. Write the syntax for declaration and how will you unload it.
How can i load all the data from a file to Table (array) in cobol.How i manage the occurs clause with out reading the file.Any options avilable ? Please can any one help me it is urgent?
What is the utilization of copybook in cobol?
how we sort two input files based on a common column and giving one o/p file please send me the coding logic?
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
i was faced one question- i have value -00001234.56 Suppress the zeroes and the output should be -1234.56 But Not - 1234.56 spaces should not be available after suppressing the zeroes. logic in jcl and cobol?
What are various search techniques in cobol? Explain.
Write a program that uses move corresponding.
What are the different data types in cobol?
How to get the last record in vsam file in cluster? And how can you get the ksds file records into cobol program?
How to read the 2nd last record of a VSAM file? (The file size is huge and we don't know the key)
What is the difference between binary search and sequential search?
What is difference between static and dynamic call in cobol?