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

What is the use of a TDQ, TSQ?

1 Answers   IBM,


How to dsect parameter is used in bms?

0 Answers  


How do you initiate another transaction?

1 Answers  


Can you explain cics transaction gateway?

0 Answers  


What are some of the cics commands associated with interval control?

0 Answers  






For protecting a transaction using the transaction security function, the two things that must be done are?

0 Answers  


Which is the EIB field that gives the date when a task was started?

1 Answers  


Can you explain exec cics handle condition command?

0 Answers  


Explain the difference between and exec cics xctl and an exec cics link command?

0 Answers  


What are the situations under which NEWCOPY is required ?

2 Answers   Cap Gemini, IBM,


what are the six different type of argument values in cobol that can be placed in various options of a cics command?

0 Answers   IBM,


Explain cedf transaction commands?

0 Answers  


Categories