What is the Linkage section? What is the Use and Why the
parm length use alway "PARM-LENGTH PIC S9(4) or PIC S9
(4) COMP." any reason?.Please let me know any one...
Cheers,Prasad
Answers were Sorted based on User's Feedback
Answer / srinivas.d
because in first two bytes it stores length.If u don't give
s9(4),then there are chances of two bytes data truncation.
Linkage section is used in main program when parm fiels is
used in jcl or in sub program when main program calls sub
program.
| Is This Answer Correct ? | 20 Yes | 4 No |
Answer / rahul dev
Q) May be the question is why code lenght in COMP only not
in COMP-3 or DISPLAY type!! If somebody know plz asnwer
A) The length of linkage is stored as Binary, hence COMP.
We cannot use COMP-3 because COMP-3 stores in Packed
decimal & not in Binary.
| Is This Answer Correct ? | 8 Yes | 3 No |
Answer / i go crazy
S9(4) COMP uses 2 bytes. where as S9(4) COMP-3 uses 3 bytes. As COMP needs less storage at word boundaries, we use COMP.
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / siri
LINKAGE SECTION:- IT IS SECTION OF THE DATA DIVISION..IT IS USED TO LINK BETWEEN THE TWO SUB PROGRAMS...PASS THE VALUE FROM JCL BY PARM PARAMETER...
DECLARE THE PARM PARAMETER IN COBOL PROGRRAM
LINKAGE SECTION.
01 PARM-FIELD.
05 PARM-LENGTH PIC S9(4) COMP.
05 PARM-VALUE PIC X(6)
PROCEDURE DIVISION USING PARM-FIELD.
THE PROGRAM CAN RECEIVE THEM USING LINKAGE SECTION.THE LINKAGE SECTION MUST BE CODED WITH HALF WORD BINARY FIELD AS FIRST FIELD.THIS IS POPULATED IS POPULATED WITH LENGTH OF THE PARM PASSED FROM THE JCL.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / viks
May be the question is why code lenght in COMP only not in
COMP-3 or DISPLAY type!! If somebody know plz asnwer
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer / ramesh
could any one give better explaination.
for ex: parm='12345' in jcl
how to declare linkage section variable.
in linkage section.
01 parm
05 ls-var pic 9(05).
(or)
01 parm
05 ls-len pic s9(04) comp.
05 ls-var pic 9(05).
please explain why we hav to declare ls-len.
| Is This Answer Correct ? | 0 Yes | 3 No |
How to get the last record in vsam file in cluster? And how can you get the kids file records into your cobol program?
is it mandatory to give data division before procedure division ? wht happens if i give procedure division first thn data division ? reply soon
Why there is no questions in this column?
What guidelines should be followed to write a structured cobol prgm?
What is the difference between PIC 9.99 and 9v99 in COBOL?
0 Answers SwanSoft Technologies,
what is ASRA, AEY9?
In a COBOL II PERFORM statement, when is the conditional tested, before or after the perform execution?
Have you used comp and comp-3 in your project? And how?
What is difference between COBOL and VS COBOL II?.
how will u pass dadta to cobol+db2 program...?
What is the difference between perform … with test after and perform … with test before?
how do you reference the rrds file formats from cobol programs