CL_ABAP_CHAR_UTILITIES
Dear Experts,
Class 'CL_ABAP_CHAR_UTILITIES' does not exist in 46B version. Please let me now if there is any similer class in 46B.
I need to use the below attriburtes .
HORIZONTAL_TAB
CR_LF
Reagareds,
Matt
Tags:
Vinaykumar Gorrela replied
Hi Matt,
Declare two hexa decimal variables which will do your required job.
DATA V_HT TYPE X VALUE '0A'. "Horizontal tab DATA V_CL TYPE X VALUE '0D'. "Carriage return
Thanks,
Vinay