 
 
 
Specifies the behavior of de-editing moves from numeric-edited items to other numeric-edited items or to numeric items.
 01 a  pic 909V99 value "30456".
 01 b  pic 9(5).
        ...
     move a to b
With DE-EDIT"1", b contains 30456. With DE-EDIT"2", b contains 00034; the 0 after the 3 is dropped because it corresponds to the insertion character 0 in the picture-string of a, and the .56 is dropped because B has no decimal places.
 
 
