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

Carrier Return HTML?

Former Member
0 Likes
486

Hi all,

i'd like to send an email with an HTML attatchment file but i dont know the cl_abap_char_utilities=>cr_lf version for an HTML file

anyone knows it?

Thanks

2 REPLIES 2
Read only

rainer_hbenthal
Active Contributor
0 Likes
458

There is no carriage return (please use correct names for things) in html. You can use <p> </p> for a paragraph or <br /> for a break, the last i think is suitable for you.

Read only

0 Likes
458

Funny, html code is blanked out

so you can use &lt;p&gt; or &lt;/p&gt; or use &lt;br /&gt;

and replace the code &lt; with the less then sign and &gt; with the greater then sign, in square brackets it should be like this:

maybe if im putting it as code:


<p> and </p>

or use <br /> which i guess is want you wanna do.