<?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 ALV tree - html header usage in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree-html-header-usage/m-p/4795962#M1123192</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´m using the following tree object&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  create object go_tree&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      parent                      = go_docking&lt;/P&gt;&lt;P&gt;      node_selection_mode         = cl_gui_column_tree=&amp;gt;node_sel_mode_multiple&lt;/P&gt;&lt;P&gt;      item_selection              = 'X'  " required for double-click event on item&lt;/P&gt;&lt;P&gt;      no_html_header              = 'X'&lt;/P&gt;&lt;P&gt;      no_toolbar                  = 'X'&lt;/P&gt;&lt;P&gt;    exceptions ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is the usage of the html_header and how can i modify this one.&lt;/P&gt;&lt;P&gt;Is it possible to show an image or xml date there ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx,&lt;/P&gt;&lt;P&gt;Gordon&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Dec 2008 18:09:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-04T18:09:54Z</dc:date>
    <item>
      <title>ALV tree - html header usage</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree-html-header-usage/m-p/4795962#M1123192</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´m using the following tree object&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  create object go_tree&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      parent                      = go_docking&lt;/P&gt;&lt;P&gt;      node_selection_mode         = cl_gui_column_tree=&amp;gt;node_sel_mode_multiple&lt;/P&gt;&lt;P&gt;      item_selection              = 'X'  " required for double-click event on item&lt;/P&gt;&lt;P&gt;      no_html_header              = 'X'&lt;/P&gt;&lt;P&gt;      no_toolbar                  = 'X'&lt;/P&gt;&lt;P&gt;    exceptions ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is the usage of the html_header and how can i modify this one.&lt;/P&gt;&lt;P&gt;Is it possible to show an image or xml date there ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx,&lt;/P&gt;&lt;P&gt;Gordon&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 18:09:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree-html-header-usage/m-p/4795962#M1123192</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-04T18:09:54Z</dc:date>
    </item>
    <item>
      <title>Re: ALV tree - html header usage</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree-html-header-usage/m-p/4795963#M1123193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For example if you given the value NO_HTML_HEADER as X then in the set_table_for_first_display and passing the HTML header over there also, the heading will NOT display in the tree.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example look at the program R_ALV_TREE_TOOLBAR_MANAGER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
* create tree control
  create object tree1
    exporting
        parent              = l_custom_container
        node_selection_mode = cl_gui_column_tree=&amp;gt;node_sel_mode_single
        item_selection      = 'X'
        no_html_header      = 'X'    "&amp;lt;&amp;lt;&amp;lt;&amp;lt; ------  &amp;lt;&amp;lt;&amp;lt;&amp;lt;
        no_toolbar          = ''
    exceptions
        cntl_error                   = 1
        cntl_system_error            = 2
        create_error                 = 3
        lifetime_error               = 4
        illegal_node_selection_mode  = 5
        failed                       = 6
        illegal_column_name          = 7.

* repid for saving variants
  ls_variant-report = sy-repid.

* create emty tree-control
  call method tree1-&amp;gt;set_table_for_first_display
    exporting
      is_hierarchy_header = l_hierarchy_header
      it_list_commentary  = lt_list_commentary  "&amp;lt;&amp;lt;&amp;lt; HTML Header
      i_logo              = l_logo
      i_background_id     = 'ALV_BACKGROUND'
      i_save              = 'A'
      is_variant          = ls_variant
    changing
      it_outtab           = gt_sflight 
      it_fieldcatalog     = gt_fieldcatalog.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Dec 2008 18:52:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree-html-header-usage/m-p/4795963#M1123193</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2008-12-04T18:52:58Z</dc:date>
    </item>
    <item>
      <title>Re: ALV tree - html header usage</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree-html-header-usage/m-p/4795964#M1123194</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;thx for your quick response.&lt;/P&gt;&lt;P&gt;is it possible to show a web picture in the html header ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R_ALV_TREE_TOOLBAR_MANAGER is using the p_logo = 'ENJOYSAP_LOGO'.&lt;/P&gt;&lt;P&gt;I would like to use a picture like "http://.....jpg"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx,&lt;/P&gt;&lt;P&gt;Gordon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2008 08:16:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree-html-header-usage/m-p/4795964#M1123194</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-05T08:16:24Z</dc:date>
    </item>
    <item>
      <title>Re: ALV tree - html header usage</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree-html-header-usage/m-p/4795965#M1123195</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;Check the report,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAPHTML_DEMO1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please do appreciate if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ameet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2008 08:23:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree-html-header-usage/m-p/4795965#M1123195</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-05T08:23:37Z</dc:date>
    </item>
    <item>
      <title>Re: ALV tree - html header usage</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree-html-header-usage/m-p/4795966#M1123196</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;is there an example where HTML Container is used with splitter ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx,&lt;/P&gt;&lt;P&gt;Gordon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2008 09:48:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree-html-header-usage/m-p/4795966#M1123196</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-05T09:48:32Z</dc:date>
    </item>
    <item>
      <title>Re: ALV tree - html header usage</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree-html-header-usage/m-p/4795967#M1123197</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found another problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the HTML DEMO uses:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE OBJECT my_container&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;            container_name = 'HTML'&lt;/P&gt;&lt;P&gt;        EXCEPTIONS&lt;/P&gt;&lt;P&gt;            others = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the usage of container_Name ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN my splitter there is no container name ?&lt;/P&gt;&lt;P&gt;and without it´s not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2008 10:34:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree-html-header-usage/m-p/4795967#M1123197</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-05T10:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: ALV tree - html header usage</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree-html-header-usage/m-p/4795968#M1123198</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;Container_name is the container element u define as workarea on screen for displaying the content in se51 transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As for splitter if u wanna use splitter container then u can c and combine the previous code with this standard report&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RSDEMO_SPLITTER_CONTROL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ameet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2008 12:00:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree-html-header-usage/m-p/4795968#M1123198</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-05T12:00:28Z</dc:date>
    </item>
  </channel>
</rss>

