<?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 how to format body message while using SO_DOCUMENT_SEND_API1? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-format-body-message-while-using-so-document-send-api1/m-p/4039806#M965578</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 having some data in internal table that i want to format as text message and mail through SO_DOCUMENT_SEND_API1 function module but not as a attachement. i am using contents in body message. but i am not able to do formating , is there any way ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;internal table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;claimid  claimdate    expensetype amount&lt;/P&gt;&lt;P&gt; 0001     01.06.2008  FUMD          20000&lt;/P&gt;&lt;P&gt; 0002     02.06.2008  SUND              500&lt;/P&gt;&lt;P&gt; 0003     05.06.2008  ENTM             1500&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to print this in message body part and send it throgh mail, while using write statement , it takes lot time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz suggest me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saurin Shah&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jun 2008 10:54:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-12T10:54:00Z</dc:date>
    <item>
      <title>how to format body message while using SO_DOCUMENT_SEND_API1?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-format-body-message-while-using-so-document-send-api1/m-p/4039806#M965578</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 having some data in internal table that i want to format as text message and mail through SO_DOCUMENT_SEND_API1 function module but not as a attachement. i am using contents in body message. but i am not able to do formating , is there any way ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;internal table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;claimid  claimdate    expensetype amount&lt;/P&gt;&lt;P&gt; 0001     01.06.2008  FUMD          20000&lt;/P&gt;&lt;P&gt; 0002     02.06.2008  SUND              500&lt;/P&gt;&lt;P&gt; 0003     05.06.2008  ENTM             1500&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to print this in message body part and send it throgh mail, while using write statement , it takes lot time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz suggest me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saurin Shah&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2008 10:54:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-format-body-message-while-using-so-document-send-api1/m-p/4039806#M965578</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-12T10:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: how to format body message while using SO_DOCUMENT_SEND_API1?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-format-body-message-while-using-so-document-send-api1/m-p/4039807#M965579</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;Take a table as mentioned below.&lt;/P&gt;&lt;P&gt;GT_OBJTXT LIKE SOLISTI1&lt;/P&gt;&lt;P&gt;       OCCURS 0 WITH HEADER LINE,      " Mail Text options&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and populate the data that you want to print as body in this table line by line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Formating/allignment only can be done while populating the table.  U have to check the mail and keep adjusting the allignment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And after populating send the table to one table parameter in funciton module that is...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            CONTENTS_TXT               = LT_OBJTXT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will populate the mail body.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;&lt;STRONG&gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Venkat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Jun 12, 2008 2:17 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2008 12:31:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-format-body-message-while-using-so-document-send-api1/m-p/4039807#M965579</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-12T12:31:40Z</dc:date>
    </item>
  </channel>
</rss>

