<?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 Tree visualization in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/tree-visualization/m-p/1147517#M116631</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have to draw a tree which can be printed.&lt;/P&gt;&lt;P&gt;For example I have a material A. This is splitted in three other materials B, C and D. Material B is splitted in material E and F. Material D is splitted in G and H, and so on. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to visualize such a tree. The number of childs for each node in each level of the three can be different for different materials.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has SAP a tool which can be used for this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Jan 2006 15:51:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-01-26T15:51:49Z</dc:date>
    <item>
      <title>Tree visualization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tree-visualization/m-p/1147517#M116631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have to draw a tree which can be printed.&lt;/P&gt;&lt;P&gt;For example I have a material A. This is splitted in three other materials B, C and D. Material B is splitted in material E and F. Material D is splitted in G and H, and so on. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to visualize such a tree. The number of childs for each node in each level of the three can be different for different materials.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has SAP a tool which can be used for this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 15:51:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tree-visualization/m-p/1147517#M116631</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-26T15:51:49Z</dc:date>
    </item>
    <item>
      <title>Re: Tree visualization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tree-visualization/m-p/1147518#M116632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Frank,&lt;/P&gt;&lt;P&gt;  you could use class CL_GUI_SIMPLE_TREE (look at sample program SAPSIMPLE_TREE_CONTROL_DEMO) or CL_GUI_ALV_TREE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;look also at those sample reports:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BCALV_TREE_01&lt;/P&gt;&lt;P&gt;BCALV_TREE_02&lt;/P&gt;&lt;P&gt;BCALV_TREE_03&lt;/P&gt;&lt;P&gt;BCALV_TREE_04&lt;/P&gt;&lt;P&gt;BCALV_TREE_05&lt;/P&gt;&lt;P&gt;BCALV_TREE_06&lt;/P&gt;&lt;P&gt;BCALV_TREE_DEMO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards, Manuel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 16:23:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tree-visualization/m-p/1147518#M116632</guid>
      <dc:creator>manuel_bassani</dc:creator>
      <dc:date>2006-01-26T16:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: Tree visualization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tree-visualization/m-p/1147519#M116633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you should look at 'SAP graphics'.&lt;/P&gt;&lt;P&gt;This should fit to your requirements.&lt;/P&gt;&lt;P&gt;Have a look at sample programs:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
GRHIER_1
BCGRDEMO
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;They use FM GRAPH_HIERARCHY_MENUE and display hierarchy structures.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 19:56:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tree-visualization/m-p/1147519#M116633</guid>
      <dc:creator>former_member182670</dc:creator>
      <dc:date>2006-01-26T19:56:34Z</dc:date>
    </item>
    <item>
      <title>Re: Tree visualization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tree-visualization/m-p/1147520#M116634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried to solve the problem by calling the function "GRAPH_HIERARCHY_MENUE" which has been used in the program BCGRDEMO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only problem I have is that when a child has two different parents, this child is painted twice (once for each parent). This child has to be painted only once with a relation to the two different parents.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jan 2006 14:15:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tree-visualization/m-p/1147520#M116634</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-27T14:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: Tree visualization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tree-visualization/m-p/1147521#M116635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Frank,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.  2 Important Fm&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL FUNCTION 'RS_TREE_CONSTRUCT'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      nodetab      = tr&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      tree_failure = 1&lt;/P&gt;&lt;P&gt;      OTHERS       = 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'RS_TREE_LIST_DISPLAY'&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;P&gt; callback_program                = sy-repid&lt;/P&gt;&lt;P&gt; callback_user_command           = 'USERAB'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      status                          = 'IMPLICIT'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     status                          = 'STANDARD'&lt;/P&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jan 2006 14:34:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tree-visualization/m-p/1147521#M116635</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-27T14:34:18Z</dc:date>
    </item>
  </channel>
</rss>

