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: 

Hexadecimal symbol for TAB

Former Member
0 Kudos

Hexadecimal symbol for TAB.

ex. if > is for enter

what is for TAB.

Thanx a lot.

6 REPLIES 6

naimesh_patel
Active Contributor
0 Kudos

Hello,

CONSTANTS: con_tab TYPE x VALUE '09'. " for TAB

regards,

naimesh

kanthimathikris
Employee
Employee
0 Kudos

Hexadecimal value for tab is 9.

Chk the site below for other reference

http://www.lookuptables.com/

Former Member
0 Kudos

its '9'

Former Member
0 Kudos

Hello,

Hope this will Help.

Tab(09)

Example: CONSTANTS: con_tab TYPE x VALUE '09'.

Carriage return (0D)

Example: CONSTANTS: con_cr type x value '0D'

Regards,

Vishal

**Reward if helpful

uwe_schieferstein
Active Contributor
0 Kudos

Hello Jaycee

For these special characters use the constants defined in class CL_ABAP_CHAR_UTILITIES.

Regards

Uwe

0 Kudos

To: All

Thanx for helping me.

Regards,

Jaycee