2009 Sep 11 7:15 PM
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'.
2009 Sep 14 7:36 AM
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'.
2009 Sep 11 7:17 PM
use this --> C_TAB TYPE C VALUE CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB
2009 Sep 14 7:36 AM
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