<?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: DMEE Tree in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dmee-tree/m-p/4729311#M1110025</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;Loop at REGUH and REGUP in the DMEE tree can be controlled by setting the DMEE tree properties. &lt;/P&gt;&lt;P&gt;GOto Sort/key fields tab in the DMEE tree properties and define 2 levels with the key fields as below:&lt;/P&gt;&lt;P&gt;Key field check box : Checked.&lt;/P&gt;&lt;P&gt;Sequence : 1&lt;/P&gt;&lt;P&gt;Structure : FPAYH &lt;/P&gt;&lt;P&gt;Sort field : ZBUKR&lt;/P&gt;&lt;P&gt;Level:1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Key field check box : Checked.&lt;/P&gt;&lt;P&gt;Sequence : 2&lt;/P&gt;&lt;P&gt;Structure : FPAYH &lt;/P&gt;&lt;P&gt;Sort field : DOC1R&lt;/P&gt;&lt;P&gt;Level:1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Key field check box : Checked.&lt;/P&gt;&lt;P&gt;Sequence : 3&lt;/P&gt;&lt;P&gt;Structure : FPAYP &lt;/P&gt;&lt;P&gt;Sort field : DOC2R&lt;/P&gt;&lt;P&gt;Level:2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now goto each segment node and set the Level as 1 or 2. In case you want to the segment to appear as many number of times as REGUH then assign LEVEL as 1 tothe segment node or in case you want the segment to appear as many number of times as REGUP then assign LEVEL as 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this solves your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manjot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Jun 2011 10:23:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-06-02T10:23:35Z</dc:date>
    <item>
      <title>DMEE Tree</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dmee-tree/m-p/4729308#M1110022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created  a dmee tree in which I have to print data of REGUH and REGUP for that I have used FPAYH and FPAYP structures respectively.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For one entry of REGUH there is two entries in REGUP as per my test data But tree calls only once not twice as per the entries of REGUP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly tell me how can I print all the rows of REGUP. Is there any loop functionality in DMEE tree.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Azra.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Nov 2008 09:29:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dmee-tree/m-p/4729308#M1110022</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-17T09:29:51Z</dc:date>
    </item>
    <item>
      <title>Re: DMEE Tree</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dmee-tree/m-p/4729309#M1110023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can assign an exit function module for every field of  REGUP.&lt;/P&gt;&lt;P&gt; And in that exit function module in case and endcase.&lt;/P&gt;&lt;P&gt; When ever that node is called you can write normal loop statement and pass the required value to the specified node.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA :&lt;/P&gt;&lt;P&gt;      w_nodename TYPE dmee_tech_name, "Node Name in DMEE tree.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE w_nodename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'REGUP_Field'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; LOOP at REGUH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2008 07:26:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dmee-tree/m-p/4729309#M1110023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-17T07:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: DMEE Tree</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dmee-tree/m-p/4729310#M1110024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Azra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you check the level settings for the REGUP field in the property section in the DMEE tree root. The level should indictae repetitions more than 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then mak sure the REGUP field has the right level assigned&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;Rini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Dec 2010 10:18:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dmee-tree/m-p/4729310#M1110024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-22T10:18:43Z</dc:date>
    </item>
    <item>
      <title>Re: DMEE Tree</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dmee-tree/m-p/4729311#M1110025</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;Loop at REGUH and REGUP in the DMEE tree can be controlled by setting the DMEE tree properties. &lt;/P&gt;&lt;P&gt;GOto Sort/key fields tab in the DMEE tree properties and define 2 levels with the key fields as below:&lt;/P&gt;&lt;P&gt;Key field check box : Checked.&lt;/P&gt;&lt;P&gt;Sequence : 1&lt;/P&gt;&lt;P&gt;Structure : FPAYH &lt;/P&gt;&lt;P&gt;Sort field : ZBUKR&lt;/P&gt;&lt;P&gt;Level:1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Key field check box : Checked.&lt;/P&gt;&lt;P&gt;Sequence : 2&lt;/P&gt;&lt;P&gt;Structure : FPAYH &lt;/P&gt;&lt;P&gt;Sort field : DOC1R&lt;/P&gt;&lt;P&gt;Level:1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Key field check box : Checked.&lt;/P&gt;&lt;P&gt;Sequence : 3&lt;/P&gt;&lt;P&gt;Structure : FPAYP &lt;/P&gt;&lt;P&gt;Sort field : DOC2R&lt;/P&gt;&lt;P&gt;Level:2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now goto each segment node and set the Level as 1 or 2. In case you want to the segment to appear as many number of times as REGUH then assign LEVEL as 1 tothe segment node or in case you want the segment to appear as many number of times as REGUP then assign LEVEL as 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this solves your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manjot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2011 10:23:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dmee-tree/m-p/4729311#M1110025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-02T10:23:35Z</dc:date>
    </item>
  </channel>
</rss>

