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



How do you receive data passed through JCL parm parameter in a Natural program ? How Data definitio..

Answer / jana

Using INPUT statement

Is This Answer Correct ?    21 Yes 3 No

How do you receive data passed through JCL parm parameter in a Natural program ? How Data definitio..

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

How do you receive data passed through JCL parm parameter in a Natural program ? How Data definitio..

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

How do you receive data passed through JCL parm parameter in a Natural program ? How Data definitio..

Answer / misty

Data Definition in Natural

DEFINE DATA
LOCAL
1 #VARIABLE1 (A10)
END-DEFINE

Is This Answer Correct ?    3 Yes 2 No

How do you receive data passed through JCL parm parameter in a Natural program ? How Data definitio..

Answer / umesh pujari

By Using linkage section in program

Is This Answer Correct ?    4 Yes 28 No

Post New Answer

More Natural Interview Questions

why do we use file-aid for seqential files?

1 Answers   Tech Mahindra,


how many work file we can code in jcl?

2 Answers  


Does Natural online require CICS or other TP systems to function? How does Natural interact with CICS? Thanks.

1 Answers  


Explain adabas basic concepts. Like inverted list, address converter ,data storage?

0 Answers  


Would like to know if have an expecific command that returns a code or something about the execution of a CALLNAT. For example ... CALLNAT 'SUBPRG' [parameter] [parameter] ... [here comes a code or command that checks if the CALLNAT was successful]

1 Answers  






differnce between read work file 1 and read work file once? why we are using work file once?

4 Answers  


What is data trace system 2.0 used for?

0 Answers  


How can we see the copy book length using file-aid?

0 Answers  


What is the difference between READ BY ISN and FIND

2 Answers  


Explain the like inverted list?

0 Answers  


How do you pass data from a Natural Program to an External Subroutine? Can it share the LDA of Program as in Internal Subroutine.

4 Answers  


Explain why do we use file-aid for seqential files?

0 Answers  


Categories