Application Development and Automation 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: 
Read only

Hexadecimal - Horizontal Tab

Former Member
0 Likes
997

Hi,

I need to write a file as tab delimited on the application server. I've tried the following two methods to achieve this:

- data: tab_hex(2) type X Value '09'. ( Can't use this as the app server is using

AIX a flavor of UNIX.)

- CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB (The client is running version

4.6C, so this is not available.)

Does anyone know the hexadecimal for horizontal tab in Unix?

Any help would be greatly appreciated.

Many Thanks,

Philip Johannesen

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
720

Is this an EBCDIC system?

IBM systems (AIX is IBM's flavor of Unix) frequently use EBCDIC.

If it is EBCDIC tab would be hex 05, I believe.

e.g.

data: tab_hex(2) type X Value '05'.

Good luck

Brian

Message was edited by:

Brian Sammond

Hi,

I need to write a file as tab delimited on the application server. I've tried the following two methods to achieve this:

- data: tab_hex(2) type X Value '09'. ( Can't use this as the app server is using

AIX a flavor of UNIX.)

- CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB (The client is running version

4.6C, so this is not available.)

Does anyone know the hexadecimal for horizontal tab in Unix?

Any help would be greatly appreciated.

Many Thanks,

Philip Johannesen

2 REPLIES 2
Read only

Former Member
0 Likes
721

Is this an EBCDIC system?

IBM systems (AIX is IBM's flavor of Unix) frequently use EBCDIC.

If it is EBCDIC tab would be hex 05, I believe.

e.g.

data: tab_hex(2) type X Value '05'.

Good luck

Brian

Message was edited by:

Brian Sammond

Read only

0 Likes
720

Thanks Brian I managed to get it due to your input. I've awarded full points.