Show TOC

Assignment Between Structure and Single Field IIILocate this document in the navigation 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.