<?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: Filter Numeric Variables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-numeric-variables/m-p/3170164#M754372</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;sy-abcde will tell you whether the value ia alphabet.For numbers, you need to declare a varaible of 10 character length with value '0123456789' as suggested. If there is no alphanumeric, then you can code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if v1 ca sy-abcde.&lt;/P&gt;&lt;P&gt;  "move it to itab1.&lt;/P&gt;&lt;P&gt;elseif v1 ca '0123456789'.&lt;/P&gt;&lt;P&gt;  "move it to itab2.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Dec 2007 06:21:48 GMT</pubDate>
    <dc:creator>jayanthi_jayaraman</dc:creator>
    <dc:date>2007-12-18T06:21:48Z</dc:date>
    <item>
      <title>Filter Numeric Variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-numeric-variables/m-p/3170160#M754368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wanted the way how I can identify the particular variable is wheather character type or numeric type??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example in my database i have records like abc, xyz, 125 etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I wanted to filter the data based on numeric &amp;amp; character file. Say in one table i want XYZ, ABC &amp;amp; in other one I want 125.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe that we have certain system fields available. Let me suggest.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 05:36:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filter-numeric-variables/m-p/3170160#M754368</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T05:36:57Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Numeric Variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-numeric-variables/m-p/3170161#M754369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Neha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Try using the logic &lt;/P&gt;&lt;P&gt; itab-(fieldname) &amp;gt; 0.  "Field value &lt;/P&gt;&lt;P&gt;  if yes numeric.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;   not numeric.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Kasiraman R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 05:39:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filter-numeric-variables/m-p/3170161#M754369</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T05:39:55Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Numeric Variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-numeric-variables/m-p/3170162#M754370</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;Neha &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for tht u declare two internal tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then in another internal table get database records then do like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at maininternaltable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if record co '0123456789'.&lt;/P&gt;&lt;P&gt;  append to first_itab.&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;  append to second_itab.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u do in this way u r problem get solves.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plzz reward if usefull&lt;/P&gt;&lt;P&gt;feel free to ask any quiries my mail id is mutyalasunilkumar@gmail.com&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plzz dont forget to reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 05:45:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filter-numeric-variables/m-p/3170162#M754370</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T05:45:13Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Numeric Variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-numeric-variables/m-p/3170163#M754371</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;Neha still if u dont get the answer plz dont hesitate to ask &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and if u r problem is solved plzz reward&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 06:16:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filter-numeric-variables/m-p/3170163#M754371</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T06:16:36Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Numeric Variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-numeric-variables/m-p/3170164#M754372</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;sy-abcde will tell you whether the value ia alphabet.For numbers, you need to declare a varaible of 10 character length with value '0123456789' as suggested. If there is no alphanumeric, then you can code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if v1 ca sy-abcde.&lt;/P&gt;&lt;P&gt;  "move it to itab1.&lt;/P&gt;&lt;P&gt;elseif v1 ca '0123456789'.&lt;/P&gt;&lt;P&gt;  "move it to itab2.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 06:21:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filter-numeric-variables/m-p/3170164#M754372</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2007-12-18T06:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Numeric Variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-numeric-variables/m-p/3170165#M754373</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; Use FM 'NUMERIC_CHECK' to find out whether the value is numeric or char.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Input: 123&lt;/P&gt;&lt;P&gt;Result : HTYPE : NUMC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INPUT: 35CA&lt;/P&gt;&lt;P&gt;Restul :  CHAR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 06:22:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filter-numeric-variables/m-p/3170165#M754373</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T06:22:30Z</dc:date>
    </item>
  </channel>
</rss>

