How do you pass data from a Natural Program to an External
Subroutine? Can it share the LDA of Program as in Internal
Subroutine.
Answer Posted / nilesh
Parameters can be passed with the PERFORM statement from
the invoking object to the external subroutine.
Example :
Perform ABCD 'para1' 'para2' 'para3'
OR
Perform ABCD 'EFGH'
Where ABCD is subroutine and PARA1 to PARA3 are parameters.
EFGH id the PDA which is define in subroutine.All the
parameters are in EFGH PDA.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
The natural file converted to PDF file if Yes then explain ?
What is a hyperdescriptor? How does it work?
Explain is it possible to code goto statement in natural? If yes please provide the syntax of the same?
Define cobol coding sheet?
How to create 1 ddm that fetches 3 adabas files simultaneously?
How to receive data passed through jcl parm parameter in a natural program?
What is cobol coding sheet?
Tell me can we update with histogram?
Can you explain control variable in online screens?
How converted the natural coding for adabas
Explain how to receive data passed through jcl parm parameter in a natural program? How data definition is defined in the program?
Explain adabas basic concepts. Like inverted list, address converter ,data storage?
Explain difference between escape(top or bottom) and escape immediate(top or bottom?
How are you going to remove duplicates from the file that is being read?
What is the difference between read work file 1 and read work file once? Why we are using work file once?