<?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 Re: Tree Control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/tree-control/m-p/3375575#M810508</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might need to create a Dock Container...That way you could have a Tree and Table on the same screen...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code from Rich Heilman usea a Dock Container and the CL_GUI_TEXTEDIT control...Should give you a hint -:)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
report zrich_0001 .
 
data:
      dockingleft  type ref to cl_gui_docking_container,
      text_editor    type ref to cl_gui_textedit,
      repid type syrepid.
 
data: itext type table of tline-tdline,
      xtext type tline-tdline.
 
parameters: p_check.
 
at selection-screen output.
 
  repid = sy-repid.
 
  create object dockingleft
              exporting repid     = repid
                        dynnr     = sy-dynnr
                        side      = dockingleft-&amp;gt;dock_at_left
                        extension = 1070.
 
  create object text_editor
              exporting
                   parent     = dockingleft.
 
  xtext = 'http:\\www.sap.com'.
  append xtext to itext.
 
  call method text_editor-&amp;gt;set_text_as_r3table
     exporting
           table              = itext
     exceptions
           others             = 1.
 
 
start-of-selection.
 
  call method text_editor-&amp;gt;get_text_as_r3table
     importing
           table              = itext
     exceptions
           others             = 1.
 
  loop at itext into xtext.
    write:/ xtext.
  endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Jan 2008 16:35:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-22T16:35:54Z</dc:date>
    <item>
      <title>Tree Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tree-control/m-p/3375573#M810506</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 have to create a report/module pool program in which I have to display a tree on the left hand side and a table control towards the right hand side and the table contro should do the functionalities of creating new entries, modifying existing ones, deleting and so on (all the functions which we see in table maintenance generator SM30).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can some one give me some ideas on how to create a navigation tree towards the left hand side of the screen and then displaying details of table in right hand side.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Best Regards,&lt;/P&gt;&lt;P&gt;Phani Kumar. S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jan 2008 16:29:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tree-control/m-p/3375573#M810506</guid>
      <dc:creator>PS_1978</dc:creator>
      <dc:date>2008-01-22T16:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: Tree Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tree-control/m-p/3375574#M810507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Phani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Create on screen. In that left hand side take one custom control and write the code for that custom container. In that same screen right side place subscreen and call the table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Naveen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jan 2008 16:33:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tree-control/m-p/3375574#M810507</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-22T16:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: Tree Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tree-control/m-p/3375575#M810508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might need to create a Dock Container...That way you could have a Tree and Table on the same screen...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code from Rich Heilman usea a Dock Container and the CL_GUI_TEXTEDIT control...Should give you a hint -:)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
report zrich_0001 .
 
data:
      dockingleft  type ref to cl_gui_docking_container,
      text_editor    type ref to cl_gui_textedit,
      repid type syrepid.
 
data: itext type table of tline-tdline,
      xtext type tline-tdline.
 
parameters: p_check.
 
at selection-screen output.
 
  repid = sy-repid.
 
  create object dockingleft
              exporting repid     = repid
                        dynnr     = sy-dynnr
                        side      = dockingleft-&amp;gt;dock_at_left
                        extension = 1070.
 
  create object text_editor
              exporting
                   parent     = dockingleft.
 
  xtext = 'http:\\www.sap.com'.
  append xtext to itext.
 
  call method text_editor-&amp;gt;set_text_as_r3table
     exporting
           table              = itext
     exceptions
           others             = 1.
 
 
start-of-selection.
 
  call method text_editor-&amp;gt;get_text_as_r3table
     importing
           table              = itext
     exceptions
           others             = 1.
 
  loop at itext into xtext.
    write:/ xtext.
  endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jan 2008 16:35:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tree-control/m-p/3375575#M810508</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-22T16:35:54Z</dc:date>
    </item>
  </channel>
</rss>

