Output tabulator

Question:
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 !
Answer:
I have already found a quite simple solution.
Thanks
Answer:
Hi,
CONSTANTS TABULATOR TYPE X VALUE '09'.
and then use your concatenate.
Answer:
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!
Answer:
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
Answer:
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]

More Articles:

Object Type : ECM. Method : display?
Invoice Printing Problems?
how to find the field and table?
urgent!!! Please help .?
Calling BAPI from Visual Basic 6.0?
Sales Order User Exit?