<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Text formatting in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-formatting/m-p/6672013#M1448096</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi manu,&lt;/P&gt;&lt;P&gt;    have u try inserting the tags inside?&lt;/P&gt;&lt;P&gt;Tell me if it is not working...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Mar 2010 09:38:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-03-11T09:38:41Z</dc:date>
    <item>
      <title>Text formatting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-formatting/m-p/6672006#M1448089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am filling a field of type SOLISTI1(char255) , I am appending text into this and sending this text in an email, but when we see that email received, the text is not coming in proper paragraph, when the size of window is decreased, the text is not formatted properly, please help me in solving this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Mar 2010 07:53:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-formatting/m-p/6672006#M1448089</guid>
      <dc:creator>manubhutani</dc:creator>
      <dc:date>2010-03-11T07:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: Text formatting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-formatting/m-p/6672007#M1448090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;   use the HTML tags with the text. &lt;/P&gt;&lt;P&gt;As an example suppose you want to send&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"This is an information message which describe how to format the text which is sent in a mail"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just insert few tags like&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;..&amp;lt;BR&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is an information message which &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;BR&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;describe how to format the text which is sent in a mail&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;BR&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;  will put a break and the message will appear like..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is an information message which &lt;/P&gt;&lt;P&gt;describe how to format the text which is sent in a mail&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Mar 2010 08:38:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-formatting/m-p/6672007#M1448090</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-11T08:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: Text formatting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-formatting/m-p/6672008#M1448091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use char utilites they will act as escape sequences in your text. like if you want a tab in email you would concatinate a separator in between of your sting ....and so on.....&lt;/P&gt;&lt;P&gt;SEPARATOR = CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in above example i have shown a horizontal_tab you can very well use&lt;/P&gt;&lt;P&gt;HORIZONTAL_TAB&lt;/P&gt;&lt;P&gt;VERTICAL_TAB&lt;/P&gt;&lt;P&gt;NEWLINE&lt;/P&gt;&lt;P&gt;CR_LF&lt;/P&gt;&lt;P&gt;FORM_FEED&lt;/P&gt;&lt;P&gt;BACKSPACE&lt;/P&gt;&lt;P&gt;SPACE_STR&lt;/P&gt;&lt;P&gt;SPACE_STR_LANGU&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Mar 2010 08:43:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-formatting/m-p/6672008#M1448091</guid>
      <dc:creator>anup_deshmukh4</dc:creator>
      <dc:date>2010-03-11T08:43:20Z</dc:date>
    </item>
    <item>
      <title>Re: Text formatting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-formatting/m-p/6672009#M1448092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is the text is more than 255 Char???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Mar 2010 09:05:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-formatting/m-p/6672009#M1448092</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-11T09:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: Text formatting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-formatting/m-p/6672010#M1448093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, my text is around 800 chars long, so i am appending this into SOLISTI1(char255)&lt;/P&gt;&lt;P&gt;but its not coming as a proper paragraph in the email body.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Mar 2010 09:11:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-formatting/m-p/6672010#M1448093</guid>
      <dc:creator>manubhutani</dc:creator>
      <dc:date>2010-03-11T09:11:19Z</dc:date>
    </item>
    <item>
      <title>Re: Text formatting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-formatting/m-p/6672011#M1448094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;I think for this you need to set the Document size&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: DOC_CHNG TYPE  SODOCCHGI1,&lt;/P&gt;&lt;P&gt;DATA: L_OBJTXT   TYPE STANDARD TABLE OF SOLISTI1,&lt;/P&gt;&lt;P&gt;DATA:L_FILELINES       TYPE I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE L_OBJTXT LINES L_FILELINES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; Create the document which is to be sent&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    DOC_CHNG-OBJ_NAME  = 'Direct Deposit Expense Report'.&lt;/P&gt;&lt;P&gt;    DOC_CHNG-OBJ_DESCR = 'Direct Deposit Expense Report'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    DOC_CHNG-DOC_SIZE = L_FILELINES * 225.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And this parameter need to be passed in FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        DOCUMENT_DATA                    = DOC_CHNG&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravinder.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Mar 2010 09:16:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-formatting/m-p/6672011#M1448094</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-11T09:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: Text formatting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-formatting/m-p/6672012#M1448095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;already doing this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Mar 2010 09:18:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-formatting/m-p/6672012#M1448095</guid>
      <dc:creator>manubhutani</dc:creator>
      <dc:date>2010-03-11T09:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: Text formatting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-formatting/m-p/6672013#M1448096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi manu,&lt;/P&gt;&lt;P&gt;    have u try inserting the tags inside?&lt;/P&gt;&lt;P&gt;Tell me if it is not working...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Mar 2010 09:38:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-formatting/m-p/6672013#M1448096</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-11T09:38:41Z</dc:date>
    </item>
    <item>
      <title>Re: Text formatting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-formatting/m-p/6672014#M1448097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No i dont know about tags, I am sending an attachment&lt;/P&gt;&lt;P&gt;but this issue is with the mail body of the text wher i am having around 800 chars for display in the body of the email&lt;/P&gt;&lt;P&gt;like &lt;/P&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;amnsrfbkbcf klhadslh asdkldhaslhdasjdjasl;kjdla&lt;/P&gt;&lt;P&gt;total chars here are around 800 (but they should come as a paragraph)&lt;/P&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Manu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Mar 2010 09:42:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-formatting/m-p/6672014#M1448097</guid>
      <dc:creator>manubhutani</dc:creator>
      <dc:date>2010-03-11T09:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: Text formatting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-formatting/m-p/6672015#M1448098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  There is no big deal in tag, this is simple thing. you just need to insert the tag at a point where you want to terminate your line and start a new line..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lets say:: mail_content(800) conatain =&amp;gt; "Hi amnsrfbkbcf klhadslh asdkldhaslhdasjdjasl;kjdla this is third line and this is fourth line thanks &amp;amp; Regrds"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is not readable i suggest you to insert &amp;lt;BR.&amp;gt;&lt;/P&gt;&lt;P&gt;like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mail_content(800) conatain =&amp;gt; "Hi &amp;lt;BR.&amp;gt;amnsrfbkbcf klhadslh asdkldhaslhdasjdjasl;kjdla &amp;lt;BR.&amp;gt;This is third line and &amp;lt;BR.&amp;gt;This is fourth line&amp;lt;BR.&amp;gt; thanks &amp;amp; Regrds".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will appear in mail body as::&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;amnsrfbkbcf klhadslh asdkldhaslhdasjdjasl;kjdla &lt;/P&gt;&lt;P&gt;this is third line and this is &lt;/P&gt;&lt;P&gt;fourth line &lt;/P&gt;&lt;P&gt;thanks &amp;amp; Regrds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Note &amp;lt;BR.&amp;gt; is &amp;lt;BR&amp;gt; with out "." As this page will understand the tag(*=*)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Mar 2010 10:00:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-formatting/m-p/6672015#M1448098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-11T10:00:33Z</dc:date>
    </item>
    <item>
      <title>Re: Text formatting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-formatting/m-p/6672016#M1448099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raj&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The field in which I am putting data is 255 char long&lt;/P&gt;&lt;P&gt;so i have to append after every 255 chars, and when i append, automatically  next record comes in next line&lt;/P&gt;&lt;P&gt;but i dont what this to happen, i want o/p in proper para, whether mail is opened in a small window or large window.&lt;/P&gt;&lt;P&gt;i hope issue is clear .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Manu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Mar 2010 11:27:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-formatting/m-p/6672016#M1448099</guid>
      <dc:creator>manubhutani</dc:creator>
      <dc:date>2010-03-11T11:27:35Z</dc:date>
    </item>
  </channel>
</rss>

