문제

I have a numeric field in a cics map and is of length 3. When i enter 10 in the field and try to insert to a database by storing into a working storage variable in cobol program, It is being inserted as 100. Why is this happening so? Is there any way to insert it in the beginning

도움이 되었습니까?

해결책

Because the default for a BMP field is left justification with blank padding.

You need to add JUSTIFY=(RIGHT,ZERO) to your DFHMDF field definition.

Here's the CICS Application Programming Reference.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top