<?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 String - Characters from 5th position to 17th position - numeric in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-characters-from-5th-position-to-17th-position-numeric/m-p/5976506#M1340152</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a string of characters and I need check if the Characters from 5th position to the 17th position should be all numeric.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Meghna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Aug 2009 20:45:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-08-17T20:45:21Z</dc:date>
    <item>
      <title>String - Characters from 5th position to 17th position - numeric</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-characters-from-5th-position-to-17th-position-numeric/m-p/5976506#M1340152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a string of characters and I need check if the Characters from 5th position to the 17th position should be all numeric.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Meghna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 20:45:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-characters-from-5th-position-to-17th-position-numeric/m-p/5976506#M1340152</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-17T20:45:21Z</dc:date>
    </item>
    <item>
      <title>Re: String - Characters from 5th position to 17th position - numeric</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-characters-from-5th-position-to-17th-position-numeric/m-p/5976507#M1340153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
        call function 'NUMERIC_CHECK'
          exporting
            string_in  = v_text+5(12)
          importing
            string_out = v_text
            htype      = type.
        if type ne 'NUMC'.
          message e999  with ' Number is NOT numberic'.
        endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt; Please search before posting &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 20:52:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-characters-from-5th-position-to-17th-position-numeric/m-p/5976507#M1340153</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2009-08-17T20:52:15Z</dc:date>
    </item>
    <item>
      <title>Re: String - Characters from 5th position to 17th position - numeric</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-characters-from-5th-position-to-17th-position-numeric/m-p/5976508#M1340154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's the sample code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: LS_STRING TYPE STRING.
DATA: LS_CHAR TYPE C LENGTH 12.

CONSTANTS: LS_VALUE(10) TYPE C VALUE '01234567890'.

ls_char = ls_string+5(12).

if ls_char CA ls_value ---&amp;gt; Checks if 5-17 characters have any numerics in them.
your code.
else.
your code.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Karthik on Aug 17, 2009 10:58 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 20:58:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-characters-from-5th-position-to-17th-position-numeric/m-p/5976508#M1340154</guid>
      <dc:creator>SG141</dc:creator>
      <dc:date>2009-08-17T20:58:30Z</dc:date>
    </item>
    <item>
      <title>Re: String - Characters from 5th position to 17th position - numeric</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/string-characters-from-5th-position-to-17th-position-numeric/m-p/5976509#M1340155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Karthik.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Meghna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 21:04:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/string-characters-from-5th-position-to-17th-position-numeric/m-p/5976509#M1340155</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-17T21:04:37Z</dc:date>
    </item>
  </channel>
</rss>

