<?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 HTML commands in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/html-commands/m-p/4839830#M1132240</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are using HTML commands &amp;lt;table&amp;gt;&amp;lt;/table&amp;gt; and designing a table fomat &amp;amp; this table will be passed to the standard function module to send email. I have defined one row for heading,but in the next rows,need to take values from internal table.My doubt is how to refer the wa area values within HMTL tags.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Material no   Material desc&lt;/P&gt;&lt;P&gt;0001            xxx&lt;/P&gt;&lt;P&gt;0002            yyy&lt;/P&gt;&lt;P&gt;0003            zzz&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please provide your inputs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Dec 2008 09:59:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-01T09:59:28Z</dc:date>
    <item>
      <title>HTML commands</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/html-commands/m-p/4839830#M1132240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are using HTML commands &amp;lt;table&amp;gt;&amp;lt;/table&amp;gt; and designing a table fomat &amp;amp; this table will be passed to the standard function module to send email. I have defined one row for heading,but in the next rows,need to take values from internal table.My doubt is how to refer the wa area values within HMTL tags.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Material no   Material desc&lt;/P&gt;&lt;P&gt;0001            xxx&lt;/P&gt;&lt;P&gt;0002            yyy&lt;/P&gt;&lt;P&gt;0003            zzz&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please provide your inputs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Dec 2008 09:59:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/html-commands/m-p/4839830#M1132240</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-01T09:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: HTML commands</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/html-commands/m-p/4839831#M1132241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a small ABAP program that will help you.&lt;/P&gt;&lt;P&gt;At the end the internal table itab will contain all data with html tags for a table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report ztest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;        line(100),&lt;/P&gt;&lt;P&gt;      end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of wa_material,&lt;/P&gt;&lt;P&gt;        w_tr_new(4) value '&amp;lt;tr&amp;gt;',&lt;/P&gt;&lt;P&gt;        w_td1_start(4) value '&amp;lt;td&amp;gt;',&lt;/P&gt;&lt;P&gt;        matnr like mara-matnr,&lt;/P&gt;&lt;P&gt;        w_td1_end(5) value '&amp;lt;/td&amp;gt;',&lt;/P&gt;&lt;P&gt;        w_td2_start(4) value '&amp;lt;td&amp;gt;',&lt;/P&gt;&lt;P&gt;        desc like makt-maktx,&lt;/P&gt;&lt;P&gt;        w_td2_end(5) value '&amp;lt;/td&amp;gt;',&lt;/P&gt;&lt;P&gt;      end of wa_material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab-line = '&amp;lt;table&amp;gt;'.&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Material 1&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;wa_material-matnr = 'MAT001'.&lt;/P&gt;&lt;P&gt;wa_material-desc = 'Material number 1 description'.&lt;/P&gt;&lt;P&gt;itab-line = wa_material.&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Material 2&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;wa_material-matnr = 'MAT002'.&lt;/P&gt;&lt;P&gt;wa_material-desc = 'Material number 2 description'.&lt;/P&gt;&lt;P&gt;itab-line = wa_material.&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab-line = '&amp;lt;/table&amp;gt;'.&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;  write: / itab.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**********************&lt;/P&gt;&lt;P&gt;result:&lt;/P&gt;&lt;P&gt;*******&lt;/P&gt;&lt;P&gt;&amp;lt;table&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;MAT001            &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Material number 1 description           &amp;lt;/td&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;MAT002            &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Material number 2 description           &amp;lt;/td&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/table&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wim Van den Wyngaert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Dec 2008 10:39:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/html-commands/m-p/4839831#M1132241</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-01T10:39:47Z</dc:date>
    </item>
  </channel>
</rss>

