Start of Content Area

This graphic is explained in the accompanying text Assignment Between Structure and Single Field III  Locate the document in its SAP Library structure

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

report ZCH_UNIEXP_7.

data: begin of TAB,
        X(1) type x value '09',
      end of tab,

      C(10)  type c.

* Before Unicode enabling:

* c+5(1) = tab.       <---- Unicode error

* After Unicode enabling

class cl_abap_char_utilities definition load.
c+5(1) =  cl_abap_char_utilities=>horizontal_tab.

End of Content Area