<?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: select values from 2 different nodes at same level CL_GUI_SIMPLE_TREE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-values-from-2-different-nodes-at-same-level-cl-gui-simple-tree/m-p/634274#M26750</link>
    <description>&lt;P&gt;RDSVAS_TRANSPORT_ORGANIZER_C01 is it report ? seems to be doesnt exists. &lt;/P&gt;</description>
    <pubDate>Thu, 03 May 2018 14:16:21 GMT</pubDate>
    <dc:creator>ABAPER_P</dc:creator>
    <dc:date>2018-05-03T14:16:21Z</dc:date>
    <item>
      <title>select values from 2 different nodes at same level CL_GUI_SIMPLE_TREE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-values-from-2-different-nodes-at-same-level-cl-gui-simple-tree/m-p/634268#M26744</link>
      <description>&lt;P&gt;Hello Team,&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;I want to select the 2 values from 2 different nodes at a time. I know how to select single value of node using using the class CL_GUI_SIMPLE_TREE&lt;/P&gt;
  &lt;P&gt; NODE_SELECTION_MODE = NODE_SEL_MODE_SINGLE and EVENT-EVENTID = CL_GUI_SIMPLE_TREE=&amp;gt;EVENTID_NODE_DOUBLE_CLICK.&lt;/P&gt;
  &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;
  &lt;P&gt;But How do i select 2 diffrent values of 2 different nodes at same level. and store vales in variable.&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;Image attached&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/137406-img.jpg" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 May 2018 12:07:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-values-from-2-different-nodes-at-same-level-cl-gui-simple-tree/m-p/634268#M26744</guid>
      <dc:creator>ABAPER_P</dc:creator>
      <dc:date>2018-05-03T12:07:34Z</dc:date>
    </item>
    <item>
      <title>Re: select values from 2 different nodes at same level CL_GUI_SIMPLE_TREE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-values-from-2-different-nodes-at-same-level-cl-gui-simple-tree/m-p/634269#M26745</link>
      <description>&lt;P&gt;Did you try to use: node_selection_mode = &lt;A href="https://help.sap.com/doc/saphelp_47x200/4.7.2/en-US/34/2a90e2b42d11d2bd7a080009b4534c/frameset.htm"&gt;node_sel_mode_multiple&lt;/A&gt; and events such as &lt;A href="https://help.sap.com/doc/saphelp_47x200/4.7.2/en-US/34/2a90e2b42d11d2bd7a080009b4534c/frameset.htm"&gt;selection_changed&lt;/A&gt; followed by call of method get_selected_nodes.&lt;/P&gt;</description>
      <pubDate>Thu, 03 May 2018 12:38:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-values-from-2-different-nodes-at-same-level-cl-gui-simple-tree/m-p/634269#M26745</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2018-05-03T12:38:08Z</dc:date>
    </item>
    <item>
      <title>Re: select values from 2 different nodes at same level CL_GUI_SIMPLE_TREE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-values-from-2-different-nodes-at-same-level-cl-gui-simple-tree/m-p/634270#M26746</link>
      <description>&lt;P&gt;tried but was unsuccessful selecting multiple nodes as shown in question screen shot.&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;could you please give sample code ?&lt;/P&gt;</description>
      <pubDate>Thu, 03 May 2018 12:55:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-values-from-2-different-nodes-at-same-level-cl-gui-simple-tree/m-p/634270#M26746</guid>
      <dc:creator>ABAPER_P</dc:creator>
      <dc:date>2018-05-03T12:55:04Z</dc:date>
    </item>
    <item>
      <title>Re: select values from 2 different nodes at same level CL_GUI_SIMPLE_TREE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-values-from-2-different-nodes-at-same-level-cl-gui-simple-tree/m-p/634271#M26747</link>
      <description>&lt;P&gt;Set the selection mode to multiple upon instantiation of the tree object.&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;CREATE OBJECT g_tree
    EXPORTING
      node_selection_mode = cl_simple_tree_model=&amp;gt;node_sel_mode_multiple
    ...&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;If you run demo program SAPSIMPLE_TREE_MODEL_DEMO and change the node selection mode to multiple in debug, you'll see multiple child nodes may be selected.&lt;/P&gt;
  &lt;P&gt;Cheers,&lt;BR /&gt;Amy&lt;/P&gt;</description>
      <pubDate>Thu, 03 May 2018 13:12:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-values-from-2-different-nodes-at-same-level-cl-gui-simple-tree/m-p/634271#M26747</guid>
      <dc:creator>amy_king</dc:creator>
      <dc:date>2018-05-03T13:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: select values from 2 different nodes at same level CL_GUI_SIMPLE_TREE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-values-from-2-different-nodes-at-same-level-cl-gui-simple-tree/m-p/634272#M26748</link>
      <description>&lt;P&gt;Yes node_selection_mode = cl_simple_tree_model=&amp;gt;node_sel_mode_multiple by this we can select multiple nodes but how we get values of node keys ? &lt;/P&gt;
  &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;
  &lt;P&gt;where as in node_sel_mode_single in the event NODE_DOUBLE_CLICK click used to get the node key but in node_sel_mode_multiple which event triggers and how to get both nodes node key ? &lt;/P&gt;</description>
      <pubDate>Thu, 03 May 2018 13:22:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-values-from-2-different-nodes-at-same-level-cl-gui-simple-tree/m-p/634272#M26748</guid>
      <dc:creator>ABAPER_P</dc:creator>
      <dc:date>2018-05-03T13:22:35Z</dc:date>
    </item>
    <item>
      <title>Re: select values from 2 different nodes at same level CL_GUI_SIMPLE_TREE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-values-from-2-different-nodes-at-same-level-cl-gui-simple-tree/m-p/634273#M26749</link>
      <description>&lt;P&gt;Perform a where used on the class to find sample demo repoort or on the suggested methd to find reports such as RDSVAS_TRANSPORT_ORGANIZER_C01 which allow multiple selection.&lt;/P&gt;</description>
      <pubDate>Thu, 03 May 2018 13:35:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-values-from-2-different-nodes-at-same-level-cl-gui-simple-tree/m-p/634273#M26749</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2018-05-03T13:35:47Z</dc:date>
    </item>
    <item>
      <title>Re: select values from 2 different nodes at same level CL_GUI_SIMPLE_TREE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-values-from-2-different-nodes-at-same-level-cl-gui-simple-tree/m-p/634274#M26750</link>
      <description>&lt;P&gt;RDSVAS_TRANSPORT_ORGANIZER_C01 is it report ? seems to be doesnt exists. &lt;/P&gt;</description>
      <pubDate>Thu, 03 May 2018 14:16:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-values-from-2-different-nodes-at-same-level-cl-gui-simple-tree/m-p/634274#M26750</guid>
      <dc:creator>ABAPER_P</dc:creator>
      <dc:date>2018-05-03T14:16:21Z</dc:date>
    </item>
    <item>
      <title>Re: select values from 2 different nodes at same level CL_GUI_SIMPLE_TREE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-values-from-2-different-nodes-at-same-level-cl-gui-simple-tree/m-p/634275#M26751</link>
      <description>&lt;P&gt;(Fond on one of my systems) In this report, some data is displayed in a tree on left panel, and on a ok_code f the dynpro menu its call the method get_selected_nodes and copy the selected nodes to an alv grid on right panel. &lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;List of reports/class depends on your version and of the solutions activated on your system(s) so you should perform the where used on such methods of the single tree class on your system to find some samples.&lt;/P&gt;</description>
      <pubDate>Thu, 03 May 2018 14:23:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-values-from-2-different-nodes-at-same-level-cl-gui-simple-tree/m-p/634275#M26751</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2018-05-03T14:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: select values from 2 different nodes at same level CL_GUI_SIMPLE_TREE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-values-from-2-different-nodes-at-same-level-cl-gui-simple-tree/m-p/634276#M26752</link>
      <description>&lt;P&gt;I not sure&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;I am getting below message in SE38&lt;/P&gt;
  &lt;H3&gt;Program RDSVAS_TRANSPORT_ORGANIZER_C01 does not exist&lt;/H3&gt;
  &lt;P&gt;Message no. DS017&lt;/P&gt;</description>
      <pubDate>Thu, 03 May 2018 14:25:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-values-from-2-different-nodes-at-same-level-cl-gui-simple-tree/m-p/634276#M26752</guid>
      <dc:creator>ABAPER_P</dc:creator>
      <dc:date>2018-05-03T14:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: select values from 2 different nodes at same level CL_GUI_SIMPLE_TREE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-values-from-2-different-nodes-at-same-level-cl-gui-simple-tree/m-p/634277#M26753</link>
      <description>&lt;P&gt;So not available in tour version, to reiterate, perform a where-used search on your system first.&lt;/P&gt;</description>
      <pubDate>Fri, 04 May 2018 05:46:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-values-from-2-different-nodes-at-same-level-cl-gui-simple-tree/m-p/634277#M26753</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2018-05-04T05:46:35Z</dc:date>
    </item>
  </channel>
</rss>

