You are on page 1of 1

Utility of cl_abap_char_utilities=>horizontal_tab To specify special characters using the CL_ABAP_CHAR_UTILITIES.

(See Transaction Code : From SE24 Class : See CL_ABAP_CHAR_UTILITIES) Have the following attributes to use as well. HORIZONTAL_TAB Tab CR_LF Newline (CRLF) FORM_FEED Page break BACKSPACE Backspace Example DATA W_TAB_CHAR (1) TYPE C. Copy the characters W_TAB_CHAR = CL_ABAP_CHAR_UTILITIES = variable * tab> HORIZ ONTAL_TAB. CONCATENATE 'A' W_TAB_CHAR 'B' INTO ~.

You might also like