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
Answer Posted / virender
I think Anna level number 49 does not matter here. I think
the problem is because of using "of dataarea of rsauud01"
with the move statement.
Just use
move 250 to data-area-len
MOVE DATA-AREA1 TO data-area-text
Please let me know if it worked.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Define the attribute byte?
What is dynamic transaction backout?
Define task work area?
What is the term bms in cics?
What is an mdt (modified data tag)?
Explain processing program table(ppt)?
What is the cics command that is used to access current date and time?
define the field with ic in the bms map.
What is a transid?
In the EIB block of CICS, highlight the names of few of the important fields?
Explain the difference between intra partition tdq and extra partition tdq?
what are transient data sets defined to cics?
explain the means of supporting pseudo conversation programming. (Eg. Storing and restoring of states, control flow, error handling)?
What are the cics transactions?
kindly specify the pic clause for the following:any bll cell, data type of length option field, hhmmss type of data fields?