Output tabulator
Hi all,
I need to separate some fields in the character string with the tabulator (hex 9). Is it possible to implement this ?
Probably something like concatenate field1 <tabulator> <field2> into ...
Thank you !
I have already found a quite simple solution.
Thanks
Hi,
CONSTANTS TABULATOR TYPE X VALUE '09'.
and then use your concatenate.
Hi there,
I try to put the sentence and this code...
CONSTANTS TABULATOR TYPE X VALUE '09'
CONCATENATE text-fec tabulator headline1 INTO headline1.
but it does not work. The error message is
"TABULATOR" must be a character-type data object (data type C, N, D, T or STRING).field string)
Shall I do something wrong?
I hope you will help. Thanks in advance!
Hi,
Its working for us.
constants: tab type x value '09'.
data : v_tab(10).
Concatenate 'S' tab 'L' into v_tab.
write:/ v_tab.
Regards,
Sudhir/Mohit
Hi,
I believe it does not work at release SAP R/3 Enterprise.
In this release produces the error above mentioned.
Don't worry. Thank you![/code]