Can a CICS code be a part of a copybook? If so, then what are the outcomes after compilation?
No Answer is Posted For this Question
Be the First to Post Answer
What is a Logical Unit of Work (LUW)?
What are the three ways available for a program to position the cursor on the screen?
What is the difference between CICS Program Control Table (PCT) and CICS Processing Program Table (PPT) ?
In SYMBOLIC Cursor Positioning after moving -1 to the length field also the cursor is not positioned in that particular field. Give reasons?
What is task control?
The READ command with INTO option will read the record specified into the data area specified (True or False)
How To Retrive The VSAM Datasets in CICS application programs?
Which is the control table where you specify all the transaction that are to be started by CICS after CICS
What is dynamic transaction backout?
How errors are handled in CICS programs?
How to differenciate the given coding is pseudo conversational? (except EIBCALEN condition)
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