‎2006 Mar 16 2:09 PM
I inserted a Tabstop using the method:
CALL METHOD OF h_word 'FormatTabs'
EXPORTING
#1 = '1,25 cm'.
But how can I insert a Tab when I'm writing the text?
There is a method called 'NextTab()' but how do I use it?
E.g. when I insert "1.1 <i>(tab)</i> XYZ...".
Thank you!
‎2006 Mar 16 2:11 PM
To insert tab you can try two options:
DATA: lv_text(20) type c.
1.
lv_text+2(1) = CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB.
or
2.
concatenate 'aa' CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB 'bb' into lv_text.
‎2006 Mar 16 2:11 PM
To insert tab you can try two options:
DATA: lv_text(20) type c.
1.
lv_text+2(1) = CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB.
or
2.
concatenate 'aa' CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB 'bb' into lv_text.
‎2006 Mar 16 2:22 PM