<?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 Problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/tree-problem/m-p/4255638#M1015869</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No because I tried and I got a dump.&lt;/P&gt;&lt;P&gt;MESSAGE_TYPE_X                     &lt;/P&gt;&lt;P&gt;METHOD FLUSH .  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do I need to call a flush first before I call add_nodes ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just filled the internal table with the new node.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you can provide me a sample abap with adding&lt;/P&gt;&lt;P&gt;a new node would be great !!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Aug 2008 12:22:16 GMT</pubDate>
    <dc:creator>former_member216100</dc:creator>
    <dc:date>2008-08-07T12:22:16Z</dc:date>
    <item>
      <title>Tree Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tree-problem/m-p/4255633#M1015864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;I use CL_GUI_SIMPLE_TREE and it works OK but&lt;/P&gt;&lt;P&gt;I need to add a node, I insert it into the internal table&lt;/P&gt;&lt;P&gt;node_tables but how I can refresh the screen that I&lt;/P&gt;&lt;P&gt;can see the new node ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Aug 2008 08:59:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tree-problem/m-p/4255633#M1015864</guid>
      <dc:creator>former_member216100</dc:creator>
      <dc:date>2008-08-07T08:59:29Z</dc:date>
    </item>
    <item>
      <title>Re: Tree Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tree-problem/m-p/4255634#M1015865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check this example...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  z_simpletree.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;type pool declarations for tree&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;TYPE-POOLS : fibs,stree.&lt;/P&gt;&lt;P&gt;*Data declaration for additional node information&lt;/P&gt;&lt;P&gt;DATA : t_node TYPE snodetext.&lt;/P&gt;&lt;P&gt;*Internal table and wa decl for nodes&lt;/P&gt;&lt;P&gt;DATA : it_node LIKE TABLE OF t_node INITIAL SIZE 0,&lt;/P&gt;&lt;P&gt;       wa_node LIKE t_node.&lt;/P&gt;&lt;P&gt;*Internal table and wa decl for Education table PA0022&lt;/P&gt;&lt;P&gt;DATA : it_0022 TYPE STANDARD TABLE OF pa0022 INITIAL SIZE 0,&lt;/P&gt;&lt;P&gt;       wa_0022 TYPE pa0022.&lt;/P&gt;&lt;P&gt;*Internal table and wa decl for text table t517x&lt;/P&gt;&lt;P&gt;DATA : it_517x TYPE STANDARD TABLE OF t517x INITIAL SIZE 0,&lt;/P&gt;&lt;P&gt;       wa_517x TYPE t517x.&lt;/P&gt;&lt;P&gt;*Internal table and wa decl for text table t517T&lt;/P&gt;&lt;P&gt;DATA : it_517t TYPE STANDARD TABLE OF t517t INITIAL SIZE 0,&lt;/P&gt;&lt;P&gt;       wa_517t TYPE t517t.&lt;/P&gt;&lt;P&gt;*Internal table and wa decl for text table t519T&lt;/P&gt;&lt;P&gt;DATA : it_519t TYPE STANDARD TABLE OF t519t INITIAL SIZE 0,&lt;/P&gt;&lt;P&gt;       wa_519t TYPE t519t.&lt;/P&gt;&lt;P&gt;*initialization event&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;*Start of selection  event&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;*Select the data for tree&lt;/P&gt;&lt;P&gt;  PERFORM fetch_data.&lt;/P&gt;&lt;P&gt;*Build the hierarchy for tree&lt;/P&gt;&lt;P&gt;  PERFORM build_hierarchy.&lt;/P&gt;&lt;P&gt;*Build Tree for display&lt;/P&gt;&lt;P&gt;  PERFORM build_tree.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  fetch_data&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; --&amp;gt;  p1        text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; &amp;lt;--  p2        text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM fetch_data .&lt;/P&gt;&lt;P&gt;*select data from PA0022&lt;/P&gt;&lt;P&gt;  SELECT * FROM pa0022 INTO CORRESPONDING FIELDS OF TABLE it_0022&lt;/P&gt;&lt;P&gt;   UP TO 50 ROWS.&lt;/P&gt;&lt;P&gt;*select data from T517x&lt;/P&gt;&lt;P&gt;  SELECT * FROM t517x INTO CORRESPONDING FIELDS OF TABLE it_517x&lt;/P&gt;&lt;P&gt;   WHERE langu = 'E'.&lt;/P&gt;&lt;P&gt;*select data from T517T&lt;/P&gt;&lt;P&gt;  SELECT * FROM t517t INTO CORRESPONDING FIELDS OF TABLE it_517t&lt;/P&gt;&lt;P&gt;   WHERE sprsl = 'E'.&lt;/P&gt;&lt;P&gt;*select data from T519t&lt;/P&gt;&lt;P&gt;  SELECT * FROM t519t INTO CORRESPONDING FIELDS OF TABLE it_519t&lt;/P&gt;&lt;P&gt;   WHERE sprsl = 'E'.&lt;/P&gt;&lt;P&gt;  ENDFORM.                    " fetch_data&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  build_hierarchy&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; --&amp;gt;  p1        text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; &amp;lt;--  p2        text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM build_hierarchy .&lt;/P&gt;&lt;P&gt;*Building the nodes and hierarchy for tree&lt;/P&gt;&lt;P&gt;  CLEAR : it_node[],&lt;/P&gt;&lt;P&gt;  wa_node.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa_node-type = 'T'.&lt;/P&gt;&lt;P&gt;  wa_node-name = 'Education'.&lt;/P&gt;&lt;P&gt;  wa_node-tlevel = '01'.&lt;/P&gt;&lt;P&gt;  wa_node-nlength = '15'.&lt;/P&gt;&lt;P&gt;  wa_node-color = '4'.&lt;/P&gt;&lt;P&gt;  wa_node-text = 'Infotype 0022'.&lt;/P&gt;&lt;P&gt;  wa_node-tlength ='20'.&lt;/P&gt;&lt;P&gt;  wa_node-tcolor = 3.&lt;/P&gt;&lt;P&gt;  APPEND wa_node TO it_node.&lt;/P&gt;&lt;P&gt;  CLEAR wa_node.&lt;/P&gt;&lt;P&gt;*Filling the values of internal table into tree&lt;/P&gt;&lt;P&gt;  LOOP AT it_0022 INTO wa_0022.&lt;/P&gt;&lt;P&gt;    wa_node-type = 'P'.&lt;/P&gt;&lt;P&gt;    wa_node-name = 'PERNR'.&lt;/P&gt;&lt;P&gt;    wa_node-tlevel = '02'.&lt;/P&gt;&lt;P&gt;    wa_node-nlength = '8'.&lt;/P&gt;&lt;P&gt;    wa_node-color = '1'.&lt;/P&gt;&lt;P&gt;    wa_node-text = wa_0022-pernr.&lt;/P&gt;&lt;P&gt;    wa_node-tlength ='20'.&lt;/P&gt;&lt;P&gt;    wa_node-tcolor = 4.&lt;/P&gt;&lt;P&gt;    APPEND wa_node TO it_node.&lt;/P&gt;&lt;P&gt;    CLEAR wa_node.&lt;/P&gt;&lt;P&gt;*Filling the text of T517t&lt;/P&gt;&lt;P&gt;    READ TABLE it_517t INTO wa_517t WITH KEY slart = wa_0022-slart.&lt;/P&gt;&lt;P&gt;    wa_node-type = 'P'.&lt;/P&gt;&lt;P&gt;    wa_node-name = wa_0022-slart.&lt;/P&gt;&lt;P&gt;    wa_node-tlevel = '03'.&lt;/P&gt;&lt;P&gt;    wa_node-nlength = '8'.&lt;/P&gt;&lt;P&gt;    wa_node-color = '1'.&lt;/P&gt;&lt;P&gt;    wa_node-text = wa_517t-stext.&lt;/P&gt;&lt;P&gt;    wa_node-tlength ='40'.&lt;/P&gt;&lt;P&gt;    wa_node-tcolor = 4.&lt;/P&gt;&lt;P&gt;    APPEND wa_node TO it_node.&lt;/P&gt;&lt;P&gt;    CLEAR wa_node.&lt;/P&gt;&lt;P&gt;*Filling the text of T519t&lt;/P&gt;&lt;P&gt;    READ TABLE it_519t INTO wa_519t WITH KEY slabs = wa_0022-slabs.&lt;/P&gt;&lt;P&gt;    wa_node-type = 'P'.&lt;/P&gt;&lt;P&gt;    wa_node-name = wa_0022-slabs.&lt;/P&gt;&lt;P&gt;    wa_node-tlevel = '04'.&lt;/P&gt;&lt;P&gt;    wa_node-nlength = '8'.&lt;/P&gt;&lt;P&gt;    wa_node-color = '2'.&lt;/P&gt;&lt;P&gt;    wa_node-text = wa_519t-stext.&lt;/P&gt;&lt;P&gt;    wa_node-tlength ='40'.&lt;/P&gt;&lt;P&gt;    wa_node-tcolor = 4.&lt;/P&gt;&lt;P&gt;    APPEND wa_node TO it_node.&lt;/P&gt;&lt;P&gt;    CLEAR wa_node.&lt;/P&gt;&lt;P&gt;*Filling the text of T517x&lt;/P&gt;&lt;P&gt;    READ TABLE it_517x INTO wa_517x WITH KEY faart = wa_0022-sltp1.&lt;/P&gt;&lt;P&gt;    wa_node-type = 'P'.&lt;/P&gt;&lt;P&gt;    wa_node-name = wa_0022-sltp1.&lt;/P&gt;&lt;P&gt;    wa_node-tlevel = '05'.&lt;/P&gt;&lt;P&gt;    wa_node-nlength = '8'.&lt;/P&gt;&lt;P&gt;    wa_node-color = '1'.&lt;/P&gt;&lt;P&gt;    wa_node-text = wa_517x-ftext.&lt;/P&gt;&lt;P&gt;    wa_node-tlength ='40'.&lt;/P&gt;&lt;P&gt;    wa_node-tcolor = 4.&lt;/P&gt;&lt;P&gt;    APPEND wa_node TO it_node.&lt;/P&gt;&lt;P&gt;    CLEAR wa_node.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    wa_node-type = 'P'.&lt;/P&gt;&lt;P&gt;    wa_node-tlevel = '06'.&lt;/P&gt;&lt;P&gt;    wa_node-nlength = '8'.&lt;/P&gt;&lt;P&gt;    wa_node-color = '1'.&lt;/P&gt;&lt;P&gt;    wa_node-text = '% Completed'.&lt;/P&gt;&lt;P&gt;    wa_node-tlength ='15'.&lt;/P&gt;&lt;P&gt;    wa_node-tcolor = 4.&lt;/P&gt;&lt;P&gt;    APPEND wa_node TO it_node.&lt;/P&gt;&lt;P&gt;    CLEAR wa_node.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;    ENDFORM.                    " build_hierarchy&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  build_tree&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; --&amp;gt;  p1        text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; &amp;lt;--  p2        text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM build_tree .&lt;/P&gt;&lt;P&gt;*Fm for constructing the tree&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 = it_node.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;*FM for displaying the tree&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;      check_duplicate_name = '1'&lt;/P&gt;&lt;P&gt;      color_of_node        = '4'&lt;/P&gt;&lt;P&gt;      color_of_mark        = '3'&lt;/P&gt;&lt;P&gt;      color_of_link        = '1'&lt;/P&gt;&lt;P&gt;      color_of_match       = '5'&lt;/P&gt;&lt;P&gt;      node_length          = 30&lt;/P&gt;&lt;P&gt;      text_length          = 75&lt;/P&gt;&lt;P&gt;      use_control          = 'L'.ENDFORM.                    " build_tree&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Aug 2008 09:01:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tree-problem/m-p/4255634#M1015865</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-07T09:01:58Z</dc:date>
    </item>
    <item>
      <title>Re: Tree Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tree-problem/m-p/4255635#M1015866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;([SAP Tree and Tree Model (BC-CI)|http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCCITREE/BCCITREE.pdf]&lt;/P&gt;&lt;P&gt;Did you set the UPDATE flag on so that changes to the tree control should be visible immediately.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL METHOD tree-&amp;gt;set_screen_update
  EXPORTING
    UPDATE = UPDATE
  EXCEPTIONS
    failed = 1
    cntl_system_error = 2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Aug 2008 09:05:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tree-problem/m-p/4255635#M1015866</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2008-08-07T09:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: Tree Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tree-problem/m-p/4255636#M1015867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried but dont work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can see that the new node is in the internal table&lt;/P&gt;&lt;P&gt;but I can not see it on the screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Aug 2008 11:27:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tree-problem/m-p/4255636#M1015867</guid>
      <dc:creator>former_member216100</dc:creator>
      <dc:date>2008-08-07T11:27:40Z</dc:date>
    </item>
    <item>
      <title>Re: Tree Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tree-problem/m-p/4255637#M1015868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How did you add the nodes, did you use &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL METHOD simple_tree-&amp;gt;add_nodes
  EXPORTING 
    table_structure_name = table_structure_name
    node_table = node_table
  EXCEPTIONS
    error_in_node_table = 1
    failed = 2
    dp_error = 3
    table_structure_name_not_found = 4.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Aug 2008 11:44:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tree-problem/m-p/4255637#M1015868</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2008-08-07T11:44:24Z</dc:date>
    </item>
    <item>
      <title>Re: Tree Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tree-problem/m-p/4255638#M1015869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No because I tried and I got a dump.&lt;/P&gt;&lt;P&gt;MESSAGE_TYPE_X                     &lt;/P&gt;&lt;P&gt;METHOD FLUSH .  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do I need to call a flush first before I call add_nodes ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just filled the internal table with the new node.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you can provide me a sample abap with adding&lt;/P&gt;&lt;P&gt;a new node would be great !!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Aug 2008 12:22:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tree-problem/m-p/4255638#M1015869</guid>
      <dc:creator>former_member216100</dc:creator>
      <dc:date>2008-08-07T12:22:16Z</dc:date>
    </item>
    <item>
      <title>Re: Tree Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tree-problem/m-p/4255639#M1015870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at this program :[RSDEMO_DRAG_DROP_EDIT_TREE|http://help.sap.com/saphelp_erp2004/helpdata/en/c0/64b4c7c74411d2bd93080009b4534c/frameset.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also don't hesitate to use the SAP demo transactions&lt;/P&gt;&lt;P&gt;- SE83&lt;/P&gt;&lt;P&gt;- DEMO_TRANSACTION &lt;/P&gt;&lt;P&gt;- DEMO_SCREEN_FLOW &lt;/P&gt;&lt;P&gt;- DWDM, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Aug 2008 12:33:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tree-problem/m-p/4255639#M1015870</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2008-08-07T12:33:55Z</dc:date>
    </item>
  </channel>
</rss>

