View previous topic :: View next topic
|
Author |
Message |
BAJJI
New User
Joined: 15 Jul 2005 Posts: 47
|
|
|
|
Hello all,
"PROCEDURE DIVISION USING DFHEIBLK DFHCOMMAREA"
Can any one please explain what is DFHEIBLK and what does this do ?
Thanks. |
|
Back to top |
|
|
jz1b0c
Active User
Joined: 25 Jan 2004 Posts: 160 Location: Toronto, Canada
|
|
|
|
Hi,
This is Execution Interface Block - DFHEIBLK
it contains EIBFN, EIBRCODE, EIBRESP ... etc
This would give the information about last cics function
its not mandatory to write DFHEIBLK in procedure division |
|
Back to top |
|
|
suryakanth HM
New User
Joined: 28 Jun 2005 Posts: 6 Location: Bangalore
|
|
|
|
DFHEIBLK(Data facility Heirarchy Exec Interface BLocK) is a cobol copy book which will be automatically included by the cics translator in all the cics programs. This will contain PIC clauses of all the fields that are mandatory in any cics program.
Ex: transid will be stored in EIBTRNID(which is a field) , The time at which the trransaction has started would be stored in EIBDATE and EIBTIME. the cics service you are requesting for.. like SEND or RECEIVE will be stored in EIBFNID.....and so on..
You better go thru the APPENDIX C of the CICS hand book written by Kageyama. All the fields are listed out there.
If i am wrong at any point, correction would be appreciated. |
|
Back to top |
|
|
|