<?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 alignment in mailing report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alignment-in-mailing-report/m-p/3926055#M940292</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am mailing a report from SAP to my account using the FM 'Z_AG_MAIL_REPORT', this is working fine, however the report is not aligned in the mail, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am using the bit of code shown below, to insert the entries into 'i_bodytxt' which is the message body.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE i_sum-date&lt;/P&gt;&lt;P&gt;                  i_sum-day&lt;/P&gt;&lt;P&gt;                  lw_docno&lt;/P&gt;&lt;P&gt;                  lw_ordno&lt;/P&gt;&lt;P&gt;                  i_sum-netwr&lt;/P&gt;&lt;P&gt;                  i_sum-waerk&lt;/P&gt;&lt;P&gt;      INTO i_bodytxt SEPARATED BY space.&lt;/P&gt;&lt;P&gt;      APPEND i_bodytxt.&lt;/P&gt;&lt;P&gt;      CLEAR i_bodytxt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any other way than this to insert the entries in the internal table so that the alignment is perfect?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i_bodytxt is just a line with no fields,&lt;/P&gt;&lt;P&gt;DATA:  BEGIN OF I_BODYTXT OCCURS 1,&lt;/P&gt;&lt;P&gt;           LINE(255) TYPE C,&lt;/P&gt;&lt;P&gt;           END OF I_BODYTXT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Jun 2008 04:29:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-05T04:29:55Z</dc:date>
    <item>
      <title>alignment in mailing report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alignment-in-mailing-report/m-p/3926055#M940292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am mailing a report from SAP to my account using the FM 'Z_AG_MAIL_REPORT', this is working fine, however the report is not aligned in the mail, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am using the bit of code shown below, to insert the entries into 'i_bodytxt' which is the message body.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE i_sum-date&lt;/P&gt;&lt;P&gt;                  i_sum-day&lt;/P&gt;&lt;P&gt;                  lw_docno&lt;/P&gt;&lt;P&gt;                  lw_ordno&lt;/P&gt;&lt;P&gt;                  i_sum-netwr&lt;/P&gt;&lt;P&gt;                  i_sum-waerk&lt;/P&gt;&lt;P&gt;      INTO i_bodytxt SEPARATED BY space.&lt;/P&gt;&lt;P&gt;      APPEND i_bodytxt.&lt;/P&gt;&lt;P&gt;      CLEAR i_bodytxt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any other way than this to insert the entries in the internal table so that the alignment is perfect?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i_bodytxt is just a line with no fields,&lt;/P&gt;&lt;P&gt;DATA:  BEGIN OF I_BODYTXT OCCURS 1,&lt;/P&gt;&lt;P&gt;           LINE(255) TYPE C,&lt;/P&gt;&lt;P&gt;           END OF I_BODYTXT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2008 04:29:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alignment-in-mailing-report/m-p/3926055#M940292</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-05T04:29:55Z</dc:date>
    </item>
    <item>
      <title>Re: alignment in mailing report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alignment-in-mailing-report/m-p/3926056#M940293</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;try using the option &lt;/P&gt;&lt;P&gt;CONCATENATE ..... INTO result separated by space RESPECTING BLANKS. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shruthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2008 04:35:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alignment-in-mailing-report/m-p/3926056#M940293</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-05T04:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: alignment in mailing report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alignment-in-mailing-report/m-p/3926057#M940294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi shruthi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you for the response, unfortunately i am using R/3 4.6C and i dont think that functionality is present in the version i am using.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2008 04:49:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alignment-in-mailing-report/m-p/3926057#M940294</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-05T04:49:48Z</dc:date>
    </item>
  </channel>
</rss>

