How do you receive data passed through JCL parm parameter in a
Natural program ? How Data definition is defined in the program?
Answers were Sorted based on User's Feedback
Answer / ad
INPUT Field1 Field2 ....
where Field1 Field2 will be defined as variable (as shown
above) with format matching the data type passed from JCL
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / rakesh paulraj
Normally in JCLs calling natural program, data is passed
using some control cards. In the natural program, the data
is received in the same order using INPUT statement similar
to STACK processing.
Data definition in Natural is done using following:
DEFINE DATA
1 #VARIABLE1 (A10) /* Alphabetic variable of length 10
..
..
END-DEFINE
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / misty
Data Definition in Natural
DEFINE DATA
LOCAL
1 #VARIABLE1 (A10)
END-DEFINE
| Is This Answer Correct ? | 3 Yes | 2 No |
Explain how to receive data passed through jcl parm parameter in a natural program? How data definition is defined in the program?
The natural file converted to PDF file if Yes then explain ?
How to receive data passed through jcl parm parameter in a natural program? How data definition is defined in the program?
What is STACK in Natural? How we can use it in Program? Give me Eg.?
Explain how to ftp the natural program to desktop? (From mainframe to pc), is it possible?
Can we update with histogram?
How are you going to remove duplicates from the file that is being read?
How do you pass data from a Natural Program to an External Subroutine? Can it share the LDA of Program as in Internal Subroutine.
What is the difference between READ BY ISN and FIND
what is the difference between read and find ?
What happens when you issue a escape routine in a program? Will there be any compilation /run time erro?
Explain why do we use file-aid for seqential files?