What are the common tables in cics and their usage?
No Answer is Posted For this Question
Be the First to Post Answer
What is the process of converting the CICS commands into the equivalent host language statements called?
Can ESDS files be accessed from CICS?
Explain the mdt in cics?
Name at least one of the ways by which a transaction can be terminated?
<CICSFault xmlns="http://www.ibm.com/software/htp/cics/WSFault">DFHPI10 08 05/13/2009 05:47:14 FSCIBM SOAP message generation failed because of incorrect input (INPUT_STRUCTURE_TOO_SMALL ).</CICSFault> Can anyone suggest how to handle this type of error?
when will be use the tdq and tsq??
What is the cics command that is used to access current date and time?
What is the primary function of the Processing Program Table (PPT)?
How do you dynamically set the CURSOR position to a specific field?
How many ways are there for initiating a transaction?
Explain re-entrancy as applies to CICS.
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