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 space in e-mail

Former Member
0 Likes
1,008

Hi All,

I am sending an e-mail through my program using the FM SO_NEW_DOCUMENT_ATT_SEND_API1.

In the body of he e-mail, I want to insert a tab space in some lines.

eg. <number><TAB><text>.

I am working on SAP 4.6C, the class 'cl_abap_char_utilities' does not exist.

Please let me know how to insert a tab in a line.

Thanks,

Dawood.

1 REPLY 1
Read only

madan_ullasa
Contributor
0 Likes
482

Hi,

Use a variable of type X and value '09'.

eg. c_tab type x value '09'.

Then concatenate 'number' 'tab' into var separated by c_tab.

regards,

Madan..