<?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 regd : ranges in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regd-ranges/m-p/3380969#M811751</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 am using setleaf table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where in only from and tovalue of cost element is available if i need intermediate values between from and to how to get that.Please help me out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Feb 2008 08:34:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-12T08:34:08Z</dc:date>
    <item>
      <title>regd : ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regd-ranges/m-p/3380969#M811751</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 am using setleaf table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where in only from and tovalue of cost element is available if i need intermediate values between from and to how to get that.Please help me out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 08:34:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regd-ranges/m-p/3380969#M811751</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T08:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: regd : ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regd-ranges/m-p/3380970#M811752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Using the fields VALSIGN,VALOPTION,VALFROM and VALTO  you have to take the value of the Cost elements from this table&lt;/P&gt;&lt;P&gt;instead of using these tables SETNODE and SETLEAF you can use the fun module G_SET_TREE_IMPORT to get the CE's pass the concatenated value of Class,Subclass and CE group to this fun module and fetch the CE's from it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 08:51:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regd-ranges/m-p/3380970#M811752</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T08:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: regd : ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regd-ranges/m-p/3380971#M811753</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 am doing this to get costelementgroup.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 09:12:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regd-ranges/m-p/3380971#M811753</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T09:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: regd : ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regd-ranges/m-p/3380972#M811754</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;select options will only have from and to value.&lt;/P&gt;&lt;P&gt;If u want all the values within the range then use the select statement and retrieve the field and stored it in separate internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following gives the sample code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; carr_id type sbook-carrid.&lt;/P&gt;&lt;P&gt;data: begin of it_carrid occurs 0,&lt;/P&gt;&lt;P&gt;      carrid type sbook-carrid,&lt;/P&gt;&lt;P&gt;      end of it_carrid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options: s_carrid for carr_id     default 'LH' to 'LH'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select carrid from sbook into table it_carrid where carrid in s_carrid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at s_carrid.&lt;/P&gt;&lt;P&gt;write: s_carrid-low, s_carrid-high.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_carrid.&lt;/P&gt;&lt;P&gt;write:/ it_carrid-carrid.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vadi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 09:12:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regd-ranges/m-p/3380972#M811754</guid>
      <dc:creator>i048168</dc:creator>
      <dc:date>2008-02-12T09:12:43Z</dc:date>
    </item>
  </channel>
</rss>

