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

Tab tab delimiter , Spreadsheet

Former Member
0 Likes
484

I have a requirement to generate a file with TAB as a delimiter in ECC 6.0 ?

in 4.X vesions the usual way is to declare the tab value as a hexadicimal type with value 09. e.g c_tab(2) type X value '09'.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
450

Hi,

at the beginig you decleare one class.

class: CL_ABAP_CHAR_UTILITIES definition load.

constants: c_tab type char1 value CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB.

Regards

Tutun

I have a requirement to generate a file with TAB as a delimiter in ECC 6.0 ?

in 4.X vesions the usual way is to declare the tab value as a hexadicimal type with value 09. e.g c_tab(2) type X value '09'.

2 REPLIES 2
Read only

Former Member
0 Likes
450

use this --> C_TAB TYPE C VALUE CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB

Read only

Former Member
0 Likes
451

Hi,

at the beginig you decleare one class.

class: CL_ABAP_CHAR_UTILITIES definition load.

constants: c_tab type char1 value CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB.

Regards

Tutun