What is eib?
No Answer is Posted For this Question
Be the First to Post Answer
Before issuing an ASKTIME command what will be the values in the EIBDATE and EIBTIME fields ?
Define transient data?
Explain the primary significance of intra-partition and extra-partition tdqs ?
What is a resident program?
what is invreq condition?
Explain the difference between link and xctl?
mention the option (along with argument type) used in a cics command to retrieve the response code after execution of the command?
Explain how do you establish a starting position in a browse operation?
Explain the logical message in cics?
With the use of an alternate index, how is a VSAM file accessed?
What is EIB. How it can be used?
I just want to ask why does the variable I passed in a dclgen of sql that has a data type of varchar which has a maximum length is 250 is truncated,, Here is the code.. DCLGEN of rsauud01 table 01 dataarea 43 data-area-len pic s9(4). 43 data-area-text pic x(250). MYVARIABLE. 01 DATAAREA1 pic x(250). move 250 to data-area-len of dataarea of rsauud01 MOVE DATA-AREA1 TO data-area-text of dataarea of rsauud01 --- but it is always trucated everytime I insert it in the table by the way it is a cobol-cics program