<?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: regarding the data dictionary. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-data-dictionary/m-p/3155531#M750528</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;select * from &amp;lt;&amp;lt;ztable&amp;gt;&amp;gt; into table &amp;lt;&amp;lt;itab&amp;gt;&amp;gt;
where pernr IN r_pernr.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;r_pernr is your RANGES.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Dec 2007 14:40:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-06T14:40:31Z</dc:date>
    <item>
      <title>regarding the data dictionary.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-data-dictionary/m-p/3155530#M750527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi people,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created a ztable. and now in that i want the field to execute and find out values for the range of values. ie if there is pernr i want to select only those values which lies within the range im selecting.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Dec 2007 14:38:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-data-dictionary/m-p/3155530#M750527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-06T14:38:55Z</dc:date>
    </item>
    <item>
      <title>Re: regarding the data dictionary.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-data-dictionary/m-p/3155531#M750528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;select * from &amp;lt;&amp;lt;ztable&amp;gt;&amp;gt; into table &amp;lt;&amp;lt;itab&amp;gt;&amp;gt;
where pernr IN r_pernr.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;r_pernr is your RANGES.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Dec 2007 14:40:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-data-dictionary/m-p/3155531#M750528</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-06T14:40:31Z</dc:date>
    </item>
    <item>
      <title>Re: regarding the data dictionary.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-data-dictionary/m-p/3155532#M750529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use SE16 for that. Just put the range which you want on the selection screen of the table and you will get all the entries corresponding to that only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Dec 2007 14:41:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-data-dictionary/m-p/3155532#M750529</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2007-12-06T14:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: regarding the data dictionary.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-data-dictionary/m-p/3155533#M750530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;If you want to find that range thru SE16n tcode give the lower range left side and higher range on right side and execute you will get contents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or If want to retrieve the data from program means you can give select stmt like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables:ztable.&lt;/P&gt;&lt;P&gt;select-options:s_pernr like ztable-pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:begin of it_ztable occurs 0,&lt;/P&gt;&lt;P&gt;        pernr like ztable-pernr,&lt;/P&gt;&lt;P&gt;end of it_ztable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear it_ztable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select pernr from ztable into table it_ztable where pernr in s_pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_ztable.&lt;/P&gt;&lt;P&gt;write:/ it_ztable-pernr.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward if useful&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sivaparvathi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Dec 2007 16:13:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-data-dictionary/m-p/3155533#M750530</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-06T16:13:44Z</dc:date>
    </item>
  </channel>
</rss>

