What does it mean when EIBCALEN is equal to zeros?

Answers were Sorted based on User's Feedback



What does it mean when EIBCALEN is equal to zeros?..

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

What does it mean when EIBCALEN is equal to zeros?..

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

What does it mean when EIBCALEN is equal to zeros?..

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

What does it mean when EIBCALEN is equal to zeros?..

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

What does it mean when EIBCALEN is equal to zeros?..

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

What does it mean when EIBCALEN is equal to zeros?..

Answer / zxascgfg

IT IS THE INITIAL STAGE OF RUNNING THE PROGRAM.

Is This Answer Correct ?    17 Yes 3 No

Post New Answer

More CICS Interview Questions

When you do a START, what will the value of EIBCALEN?

2 Answers   IBM, Satyam, Xansa,


Translation Time is not reduced if the Pre-compilation is done first(True or False).

1 Answers   Kanbay,


Can you define mdt?

0 Answers  


Use of DFHCOMMAREA in cics

2 Answers   Virtusa,


What is the eib?

0 Answers  






How do you terminate an already issued DELAY command?

1 Answers   IBM,


Explain the thress bms options?

0 Answers  


What is the difference between pseudo-conversational and conversational?

2 Answers   IBM,


Explain how many conditions can you include in a single handle condition command?

0 Answers  


What are the types of the dfhmdf present in the cics?

0 Answers  


what is mapfail and when we get this error? during send map or receive map?

3 Answers   HP,


How do you fire a batch job from a CICS transaction ?

2 Answers   TCS,


Categories