Show TOC

Assignment Between Structure and Single Field IILocate this document in the navigation structure

*-------------------------------------------------------------* MOVE: structure <-> single field                              --------------------------------------------------------------

report ZCH_UNIEXP_6.

data: begin of STRUC,        NUMBER(20) type n,        F2         type p,      end of STRUC,

 NUMBER(20)   type n.

* Before Unicode enabling

* NUMBER = STRUC.   <---- Unicode error

* After Unicode enabling

NUMBER = STRUC-NUMBER.