<?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 Send an internal table as an HTML attachment, allignment issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-an-internal-table-as-an-html-attachment-allignment-issue/m-p/552324#M20961</link>
    <description>&lt;P&gt;I have written the following code to convert an internal table to HTML. however, when i open the html attachment in the email, the allignment of some records (NOT ALL) is wrong, a few entries have been put at the top and the font color is purple for some entries at random. Please help.&lt;/P&gt;
  &lt;P&gt;my code :&lt;/P&gt;
  &lt;P&gt;SPAN { font-family: "Courier New"; font-size: 10pt; color: #000000; background: #FFFFFF; } .L0S31 { font-style: italic; color: #808080; } .L0S32 { color: #3399FF; } .L0S33 { color: #4DA619; } .L0S52 { color: #0000FF; } .L0S55 { color: #800080; } .L0S70 { color: #808080; }&lt;/P&gt;
  &lt;P&gt;FORM itab_to_html2 TABLES t_gr&lt;BR /&gt;USING p_gr TYPE char30.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;DATA:&lt;BR /&gt;lt_header TYPE STANDARD TABLE OF w3head WITH HEADER LINE, "&lt;BR /&gt;lt_fields TYPE STANDARD TABLE OF w3fields WITH HEADER LINE, "&lt;BR /&gt;lfs_header TYPE w3head,&lt;BR /&gt;lw_head TYPE w3head.&lt;BR /&gt; &lt;BR /&gt;DATA: t_fcat TYPE lvc_t_fcat, "&lt;BR /&gt;wa_fcat LIKE LINE OF t_fcat.&lt;BR /&gt; &lt;BR /&gt;*-Populate Fieldcatalog&lt;BR /&gt; &lt;BR /&gt;REFRESH t_fcat. CLEAR wa_fcat.&lt;BR /&gt;wa_fcat-coltext = 'SN Number'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'CA Number'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'Customer Name'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt; &lt;BR /&gt;wa_fcat-coltext = 'SR Type'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'SR Category'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'Mobility Indicator'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt; &lt;BR /&gt;wa_fcat-coltext = 'SR Status'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'Group Resp ID'.&lt;BR /&gt; &lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'Service Org'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'Volatage Level'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt; &lt;BR /&gt;wa_fcat-coltext = 'Planning Dt'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'Cons Comp Dt'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'KIV '.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt; &lt;BR /&gt;wa_fcat-coltext = 'Work Typ'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'No of poles'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'project no'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt; &lt;BR /&gt;wa_fcat-coltext = 'contract strt dt'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'SN No'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'KIV(meter)'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt; &lt;BR /&gt;wa_fcat-coltext = 'SO comp dt'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'CC paid dt'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'SD paid dt'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt; &lt;BR /&gt;wa_fcat-coltext = 'Days on status'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt; &lt;BR /&gt;" Fill the Column headings and Properties&lt;BR /&gt; &lt;BR /&gt;LOOP AT t_fcat INTO wa_fcat.&lt;BR /&gt;lw_head-text = wa_fcat-coltext.&lt;BR /&gt; &lt;BR /&gt;CALL FUNCTION 'WWW_ITAB_TO_HTML_HEADERS'&lt;BR /&gt;EXPORTING&lt;BR /&gt;field_nr = sy-tabix&lt;BR /&gt;text = lw_head-text&lt;BR /&gt;fgcolor = 'black'&lt;BR /&gt;bgcolor = 'grey'&lt;BR /&gt;TABLES&lt;BR /&gt;header = lt_header.&lt;BR /&gt; &lt;BR /&gt;*-Populate Column Properties&lt;BR /&gt;CALL FUNCTION 'WWW_ITAB_TO_HTML_LAYOUT'&lt;BR /&gt;EXPORTING&lt;BR /&gt;field_nr = sy-tabix&lt;BR /&gt;justified = 'justify'&lt;BR /&gt;fgcolor = 'black'&lt;BR /&gt;size = '1'&lt;BR /&gt;TABLES&lt;BR /&gt;fields = lt_fields.&lt;BR /&gt;ENDLOOP.&lt;BR /&gt; &lt;BR /&gt;REFRESH t_fcat[].&lt;BR /&gt; &lt;BR /&gt;*-Title of the Display&lt;BR /&gt;lfs_header-text ' Group Responsible FRONTLINER'&lt;BR /&gt;lfs_header-font = 'Arial'.&lt;BR /&gt;lfs_header-size = '2'.&lt;BR /&gt; &lt;A href="https://answers.sap.com/storage/attachments/85259-untitled.png"&gt;untitled.png&lt;/A&gt;&lt;BR /&gt;*-Preparing the HTML from Intenal Table&lt;BR /&gt;REFRESH gt_html.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;CALL FUNCTION 'WWW_ITAB_TO_HTML'&lt;BR /&gt;EXPORTING&lt;BR /&gt;table_header = lfs_header&lt;BR /&gt;TABLES&lt;BR /&gt;html = gt_html&lt;BR /&gt;fields = lt_fields&lt;BR /&gt;row_header = lt_header&lt;BR /&gt;itable = t_gr.&lt;BR /&gt; &lt;BR /&gt;CLEAR lfs_header.&lt;BR /&gt; &lt;BR /&gt;LOOP AT gt_html INTO gwa_htmlline.&lt;BR /&gt; &lt;BR /&gt;CONCATENATE gv_tmp_str gwa_htmlline INTO gv_tmp_str.&lt;BR /&gt;ENDLOOP .&lt;BR /&gt; &lt;BR /&gt;REFRESH gt_html[].&lt;BR /&gt; &lt;BR /&gt;IF NOT gv_tmp_str IS INITIAL.&lt;BR /&gt;CALL FUNCTION 'SSFH_STRING_TO_TABUTF8'&lt;BR /&gt;EXPORTING&lt;BR /&gt;cstr_input_data = gv_tmp_str&lt;BR /&gt;codepage = '4110'&lt;BR /&gt;* IMPORTING&lt;BR /&gt;* OSTR_INPUT_DATA_L =&lt;BR /&gt;TABLES&lt;BR /&gt;ostr_input_data = gt_table&lt;BR /&gt;EXCEPTIONS&lt;BR /&gt;conversion_error = 1&lt;BR /&gt;internal_error = 2&lt;BR /&gt;OTHERS = 3.&lt;BR /&gt; &lt;BR /&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt;* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;BR /&gt;* WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;BR /&gt;ENDIF.&lt;BR /&gt; &lt;BR /&gt; gt_attachment[] = gt_table[].&lt;BR /&gt;REFRESH: gt_table[].&lt;BR /&gt;CLEAR gv_tmp_str.&lt;BR /&gt;ENDIF.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;ENDFORM.&lt;/P&gt;</description>
    <pubDate>Sat, 18 Nov 2017 06:58:11 GMT</pubDate>
    <dc:creator>ananhoriya</dc:creator>
    <dc:date>2017-11-18T06:58:11Z</dc:date>
    <item>
      <title>Send an internal table as an HTML attachment, allignment issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-an-internal-table-as-an-html-attachment-allignment-issue/m-p/552324#M20961</link>
      <description>&lt;P&gt;I have written the following code to convert an internal table to HTML. however, when i open the html attachment in the email, the allignment of some records (NOT ALL) is wrong, a few entries have been put at the top and the font color is purple for some entries at random. Please help.&lt;/P&gt;
  &lt;P&gt;my code :&lt;/P&gt;
  &lt;P&gt;SPAN { font-family: "Courier New"; font-size: 10pt; color: #000000; background: #FFFFFF; } .L0S31 { font-style: italic; color: #808080; } .L0S32 { color: #3399FF; } .L0S33 { color: #4DA619; } .L0S52 { color: #0000FF; } .L0S55 { color: #800080; } .L0S70 { color: #808080; }&lt;/P&gt;
  &lt;P&gt;FORM itab_to_html2 TABLES t_gr&lt;BR /&gt;USING p_gr TYPE char30.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;DATA:&lt;BR /&gt;lt_header TYPE STANDARD TABLE OF w3head WITH HEADER LINE, "&lt;BR /&gt;lt_fields TYPE STANDARD TABLE OF w3fields WITH HEADER LINE, "&lt;BR /&gt;lfs_header TYPE w3head,&lt;BR /&gt;lw_head TYPE w3head.&lt;BR /&gt; &lt;BR /&gt;DATA: t_fcat TYPE lvc_t_fcat, "&lt;BR /&gt;wa_fcat LIKE LINE OF t_fcat.&lt;BR /&gt; &lt;BR /&gt;*-Populate Fieldcatalog&lt;BR /&gt; &lt;BR /&gt;REFRESH t_fcat. CLEAR wa_fcat.&lt;BR /&gt;wa_fcat-coltext = 'SN Number'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'CA Number'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'Customer Name'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt; &lt;BR /&gt;wa_fcat-coltext = 'SR Type'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'SR Category'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'Mobility Indicator'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt; &lt;BR /&gt;wa_fcat-coltext = 'SR Status'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'Group Resp ID'.&lt;BR /&gt; &lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'Service Org'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'Volatage Level'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt; &lt;BR /&gt;wa_fcat-coltext = 'Planning Dt'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'Cons Comp Dt'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'KIV '.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt; &lt;BR /&gt;wa_fcat-coltext = 'Work Typ'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'No of poles'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'project no'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt; &lt;BR /&gt;wa_fcat-coltext = 'contract strt dt'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'SN No'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'KIV(meter)'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt; &lt;BR /&gt;wa_fcat-coltext = 'SO comp dt'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'CC paid dt'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt;wa_fcat-coltext = 'SD paid dt'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt; &lt;BR /&gt;wa_fcat-coltext = 'Days on status'.&lt;BR /&gt;APPEND wa_fcat TO t_fcat.&lt;BR /&gt; &lt;BR /&gt;" Fill the Column headings and Properties&lt;BR /&gt; &lt;BR /&gt;LOOP AT t_fcat INTO wa_fcat.&lt;BR /&gt;lw_head-text = wa_fcat-coltext.&lt;BR /&gt; &lt;BR /&gt;CALL FUNCTION 'WWW_ITAB_TO_HTML_HEADERS'&lt;BR /&gt;EXPORTING&lt;BR /&gt;field_nr = sy-tabix&lt;BR /&gt;text = lw_head-text&lt;BR /&gt;fgcolor = 'black'&lt;BR /&gt;bgcolor = 'grey'&lt;BR /&gt;TABLES&lt;BR /&gt;header = lt_header.&lt;BR /&gt; &lt;BR /&gt;*-Populate Column Properties&lt;BR /&gt;CALL FUNCTION 'WWW_ITAB_TO_HTML_LAYOUT'&lt;BR /&gt;EXPORTING&lt;BR /&gt;field_nr = sy-tabix&lt;BR /&gt;justified = 'justify'&lt;BR /&gt;fgcolor = 'black'&lt;BR /&gt;size = '1'&lt;BR /&gt;TABLES&lt;BR /&gt;fields = lt_fields.&lt;BR /&gt;ENDLOOP.&lt;BR /&gt; &lt;BR /&gt;REFRESH t_fcat[].&lt;BR /&gt; &lt;BR /&gt;*-Title of the Display&lt;BR /&gt;lfs_header-text ' Group Responsible FRONTLINER'&lt;BR /&gt;lfs_header-font = 'Arial'.&lt;BR /&gt;lfs_header-size = '2'.&lt;BR /&gt; &lt;A href="https://answers.sap.com/storage/attachments/85259-untitled.png"&gt;untitled.png&lt;/A&gt;&lt;BR /&gt;*-Preparing the HTML from Intenal Table&lt;BR /&gt;REFRESH gt_html.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;CALL FUNCTION 'WWW_ITAB_TO_HTML'&lt;BR /&gt;EXPORTING&lt;BR /&gt;table_header = lfs_header&lt;BR /&gt;TABLES&lt;BR /&gt;html = gt_html&lt;BR /&gt;fields = lt_fields&lt;BR /&gt;row_header = lt_header&lt;BR /&gt;itable = t_gr.&lt;BR /&gt; &lt;BR /&gt;CLEAR lfs_header.&lt;BR /&gt; &lt;BR /&gt;LOOP AT gt_html INTO gwa_htmlline.&lt;BR /&gt; &lt;BR /&gt;CONCATENATE gv_tmp_str gwa_htmlline INTO gv_tmp_str.&lt;BR /&gt;ENDLOOP .&lt;BR /&gt; &lt;BR /&gt;REFRESH gt_html[].&lt;BR /&gt; &lt;BR /&gt;IF NOT gv_tmp_str IS INITIAL.&lt;BR /&gt;CALL FUNCTION 'SSFH_STRING_TO_TABUTF8'&lt;BR /&gt;EXPORTING&lt;BR /&gt;cstr_input_data = gv_tmp_str&lt;BR /&gt;codepage = '4110'&lt;BR /&gt;* IMPORTING&lt;BR /&gt;* OSTR_INPUT_DATA_L =&lt;BR /&gt;TABLES&lt;BR /&gt;ostr_input_data = gt_table&lt;BR /&gt;EXCEPTIONS&lt;BR /&gt;conversion_error = 1&lt;BR /&gt;internal_error = 2&lt;BR /&gt;OTHERS = 3.&lt;BR /&gt; &lt;BR /&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt;* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;BR /&gt;* WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;BR /&gt;ENDIF.&lt;BR /&gt; &lt;BR /&gt; gt_attachment[] = gt_table[].&lt;BR /&gt;REFRESH: gt_table[].&lt;BR /&gt;CLEAR gv_tmp_str.&lt;BR /&gt;ENDIF.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;ENDFORM.&lt;/P&gt;</description>
      <pubDate>Sat, 18 Nov 2017 06:58:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-an-internal-table-as-an-html-attachment-allignment-issue/m-p/552324#M20961</guid>
      <dc:creator>ananhoriya</dc:creator>
      <dc:date>2017-11-18T06:58:11Z</dc:date>
    </item>
    <item>
      <title>Re: Send an internal table as an HTML attachment, allignment issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-an-internal-table-as-an-html-attachment-allignment-issue/m-p/552325#M20962</link>
      <description>&lt;P&gt;WWW_ITAB_TO_HTML returns an HTML table with lines of 255 characters. If you want to transfer it to a STRING variable, it must be done by concatenation and by &lt;STRONG&gt;keeping the trailing blanks of all lines&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;So, one obvious issue is about this line:&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;CONCATENATE gv_tmp_str gwa_htmlline INTO gv_tmp_str.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;It must be replaced with:&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;CONCATENATE gv_tmp_str gwa_htmlline INTO gv_tmp_str RESPECTING BLANKS.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Note apart: you are using the unreleased function module SSFH_STRING_TO_TABUTF8 for code page conversion, instead use the class CL_ABAP_CODEPAGE (documented in the official ABAP documentation).&lt;/P&gt;</description>
      <pubDate>Sat, 18 Nov 2017 10:31:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-an-internal-table-as-an-html-attachment-allignment-issue/m-p/552325#M20962</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2017-11-18T10:31:24Z</dc:date>
    </item>
    <item>
      <title>Re: Send an internal table as an HTML attachment, allignment issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-an-internal-table-as-an-html-attachment-allignment-issue/m-p/552326#M20963</link>
      <description>&lt;P&gt;Hi Sandra,&lt;/P&gt;
  &lt;P&gt;I really appreciate your help, my issue is resolved. &lt;/P&gt;
  &lt;P&gt;Thanks,&lt;/P&gt;
  &lt;P&gt;Animesh&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2017 11:46:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-an-internal-table-as-an-html-attachment-allignment-issue/m-p/552326#M20963</guid>
      <dc:creator>ananhoriya</dc:creator>
      <dc:date>2017-11-27T11:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: Send an internal table as an HTML attachment, allignment issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-an-internal-table-as-an-html-attachment-allignment-issue/m-p/552327#M20964</link>
      <description>&lt;P&gt;Thanks for this solution it is extremely helpful for me. After 1 week of standard debugging I found this solution and resolve issue within 10 Sec. Thanks a ton Man!!!!&lt;/P&gt;</description>
      <pubDate>Wed, 28 Nov 2018 13:45:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-an-internal-table-as-an-html-attachment-allignment-issue/m-p/552327#M20964</guid>
      <dc:creator>kevin_patel</dc:creator>
      <dc:date>2018-11-28T13:45:07Z</dc:date>
    </item>
    <item>
      <title>Re: Send an internal table as an HTML attachment, allignment issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-an-internal-table-as-an-html-attachment-allignment-issue/m-p/552328#M20965</link>
      <description>&lt;P&gt;Thank you! This solution solve my problem!&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 14:41:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-an-internal-table-as-an-html-attachment-allignment-issue/m-p/552328#M20965</guid>
      <dc:creator>former_member596343</dc:creator>
      <dc:date>2020-03-27T14:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: Send an internal table as an HTML attachment, allignment issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-an-internal-table-as-an-html-attachment-allignment-issue/m-p/552329#M20966</link>
      <description>&lt;P&gt;Sandra rules!!! a definite MUST follow!&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 14:57:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-an-internal-table-as-an-html-attachment-allignment-issue/m-p/552329#M20966</guid>
      <dc:creator>ChrisSolomon</dc:creator>
      <dc:date>2020-03-27T14:57:14Z</dc:date>
    </item>
  </channel>
</rss>

