What does it mean when EIBCALEN is equal to zeros?
Answers were Sorted based on User's Feedback
Answer / yogendra shinde
EIBCALEN stands for Execution Interface Block Communication
Area Length. If CICS applicaton program is running for the
first time then no data has been transferred from CICS MAP
or terminal to application pgm. At that time the length of
the COMMAREA is zero. Which is indicated by EIBCALEN
parameter.
Is This Answer Correct ? | 94 Yes | 7 No |
Answer / santosh khot
The Program is Running first time and there is not transfer
of data from program to program.
Is This Answer Correct ? | 66 Yes | 10 No |
Answer / cheran pogu
EIBCALEN determines whether the calling program sent
COMMAREA, if EIBCALEN is greater than zero, COMMAREA was
sent. this should always be checked.
Is This Answer Correct ? | 27 Yes | 3 No |
Answer / pradeep
Its not that just CICS has returned no data, but also, when
there is another Programming language which passes data to
the CICS program, the EIBCALEN will be zero. This is
because, the CICS to CICS data transfer only through the
COMMAREA in LINKAGE SECTION. And if there is another prog.
lang. passing the data to a CICS prg, then data will be
received in the LINKAGE SECTION but with a Different Pre-
defined data item. For ex:
LINKAGE,SECTION.
01 DFHCOMMAREA.
03 FILLER PIC X(95).
01 TWA-AREA.
05 INTERFACE-AREA-ADDR USAGE IS POINTER.
01 MANTIS-IN.
02 FILLER PIC X(8).
02 MANTIS-DATA.
05 FILLER PIC X(95).
Here, the DFHCOMMAREA is only used, when a CICS Prog sends
the data. Whereas the MANTIS-IN is used when a MANTIS prog
is linked to this CICS pgm.
So, In PROCEDURE DIVISION, we give the following check
EVALUATE,EIBCALEN,
WHEN ZERO
EXEC CICS ADDRESS TWA(ADDRESS OF TWA-AREA) END-EXEC
SET ADDRESS OF MANTIS-IN TO INTERFACE-AREA-ADDR
MOVE MANTIS-DATA TO WW-LINKAGE-AREA
WHEN OTHER
MOVE DFHCOMMAREA TO WW-LINKAGE-AREA
END-EVALUATE.
Hope this is understandable!!
Is This Answer Correct ? | 25 Yes | 4 No |
Answer / thomas vt
EIBCALEN equals to zero means that the communication area
length is zero indicating that currently no data
transaction has been occured and it is the initial state of
runing that program..
and also the communication area length will increased
according to the length of data transmitted...
i.e we can pass data from one program to another by sending
it as a group item under the DFHCOMMAREA variable used in
program
Is This Answer Correct ? | 15 Yes | 0 No |
Answer / zxascgfg
IT IS THE INITIAL STAGE OF RUNNING THE PROGRAM.
Is This Answer Correct ? | 17 Yes | 3 No |
When you do a START, what will the value of EIBCALEN?
Translation Time is not reduced if the Pre-compilation is done first(True or False).
Can you define mdt?
Use of DFHCOMMAREA in cics
What is the eib?
How do you terminate an already issued DELAY command?
Explain the thress bms options?
What is the difference between pseudo-conversational and conversational?
Explain how many conditions can you include in a single handle condition command?
What are the types of the dfhmdf present in the cics?
what is mapfail and when we get this error? during send map or receive map?
How do you fire a batch job from a CICS transaction ?