Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

CL_ABAP_CHAR_UTILITIES

Former Member
0 Kudos

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

1 ACCEPTED SOLUTION

Former Member
0 Kudos

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

2 REPLIES 2

Former Member
0 Kudos

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

Former Member
0 Kudos

declare 2 variable of hexadecimal data types.