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

Db2 what is the difference between a package and a plan. How does one bind 2 versions of a cics transaction with the same module name in two different cicsregions that share the same db2 subsystem?

0 Answers  


What is effect on RECEIVE MAP when PF key is pressed? PA key is pressed?

1 Answers  


Can you define bms?

0 Answers  


What is the difference between the XCTL and LINK commands?

1 Answers   IBM,


Explain cebr transaction commands?

0 Answers  






Which CICS system program is responsible for handling automatic task initialization?

2 Answers   IBM,


Is it possible to delete Symbolic Map? What is the impactness if we delete symbolic map?

3 Answers   CTS,


what are the two ways of breaking a cpu bound process to allow other task to gain access to cpu?

1 Answers   IBM,


Explain the cics command that is used for reading a record from the tdq?

0 Answers  


What are the types of performs in COBOL? How does perform thru work, give example.

2 Answers  


What is the difference between START and XCTL? How do you determine when to use either option?

2 Answers  


What is the COMMAREA(communications area)?

2 Answers  


Categories