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
what is the most common way of building queue-id of a tsq?
what are the differences between and exec cics xctl and an exec cics link command?
What are the cics transactions?
Define exec cics retrieve?
Explain how do you dynamically set the cursor position to a specific field?
name the command that is used to dump the main storage areas related to a task?
what are the thress bms options?
what are the six different type of argument values in cobol that can be placed in various options of a cics command?
Explain the function of the cics translator?
What does EIB mean in CICS?
What are the types of important programs that are used in the cics?
What is program reentrance?
Can QSAM files be accessed from CICS?
Can dynamic calls be used in CICS?
Define an aey9 abend?