Entering content frameThis graphic is explained in the accompanying text Assignment Between Structure and Single Field II Locate the document in its SAP Library 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.

 

 

Leaving content frame