where will we code call by content and call by reference dude pls reply soon ?
Answers were Sorted based on User's Feedback
Answer / munigopal
procedure division.
CALL "subpgm name"
USING BY CONTENT
BY REFERENCE.
BY REFERENCE is default
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / priya
its being coded in procedure division
procedure division.
CALL "subpgm name"
USING BY CONTENT
BY REFERENCE.
by content is default
| Is This Answer Correct ? | 1 Yes | 8 No |
i have the following varibles in the working storage 05 ws-A PIC X(30) VALUE 'ABCDEFGHIJKLMNOPQRESTUVWXYZ ' 05 WS-B REDEFINES WS-A 10 WS-B1 PIC X(10). 10 WS-B2 PIC 9(10). 10 WS-B3 PIC X(10). If I Display B1, B2 and B3 respectively, what is the value displayed in B2
Can we put move statement in COBOL copybook
Why would you use find and get rather than to obtain?
have in 100 records in a file i want to move only matched records to one output_file1 and nonmathed records are moved to another output_file2 ... any one can provide logic code
How do you define a table/array in COBOL?
What is Control Break processing ?
BY seeing a program how can we say that it is static call or dynamic call
We are using the searching a table which is indexed, once the key is found, how can we get the occurance at which the key was found.
db2 variable decimal(15,2) what is the equalent size of cobol variable
how would find total records in files using seqientional
Which Search verb is equivalent to PERFORM…VARYING?
How many maximum number of procedures can we write in one COBOL program?