Hello.
I have an application developed in NAT2 and I need to upgrade it to NAT3.
The situation below ocurrs frequently:
=========================================================================
DEFINE DATA
01 #A-NUM (N3)
01 REDEFINE #A-NUM
02 #A-ALPHA (A3)
*
01 #B (N3)
01 #C (N4)
END-DEFINE
*
- The case below has no problems
A-NUM := 456
B := A-NUM
C := A-NUM - In the case below we have different results between NAT2 and NAT3
A-ALPHA := “ABC”
B := A-NUM
C := A-NUM
** In NAT2: B receives “ABC” and C receives “0123”
** In NAT3: B receives “123” and C receives “0123”
*
End
I tried to use NEE521 (MVSNAT22TO31 impact type) to detect all objects thats uses this kind of situation but it didn’t work.
Somebody could help me?