<?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 CONVT_NO_NUMBER error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/convt-no-number-error/m-p/1992295#M404671</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have a field on a bsp that is set up as a decimal field.  I do not want people to enter in either a dollar sign or comma.  If they do, I receive the error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following error text was processed in the system:&lt;/P&gt;&lt;P&gt;An exception with the type CX_SY_CONVERSION_NO_NUMBER occurred, but was neither handled locally, nor declared in a RAISING clause&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;Exception Class CX_SY_CONVERSION_NO_NUMBER &lt;/P&gt;&lt;P&gt;Error Name CONVT_NO_NUMBER &lt;/P&gt;&lt;P&gt;Program CL_HRRCF_PROFILE_WORKEXP_DET_VCP &lt;/P&gt;&lt;P&gt;Include CL_HRRCF_PROFILE_WORKEXP_DET_VCM00D &lt;/P&gt;&lt;P&gt;ABAP Class CL_HRRCF_PROFILE_WORKEXP_DET_V &lt;/P&gt;&lt;P&gt;Analyze DO_HANDLE_DATA &lt;/P&gt;&lt;P&gt;Line 208  &lt;/P&gt;&lt;P&gt;Long text Das Argument '$23000.00' kann nicht korrekt als Zahl dargestellt werden.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;What I would like instead is a pop-up message that states users should not enter these values.  Is there any way that I can check this field and have a pop-up appear if an inappropriate value is entered?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Heather&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Mar 2007 18:05:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-26T18:05:05Z</dc:date>
    <item>
      <title>CONVT_NO_NUMBER error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convt-no-number-error/m-p/1992295#M404671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have a field on a bsp that is set up as a decimal field.  I do not want people to enter in either a dollar sign or comma.  If they do, I receive the error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following error text was processed in the system:&lt;/P&gt;&lt;P&gt;An exception with the type CX_SY_CONVERSION_NO_NUMBER occurred, but was neither handled locally, nor declared in a RAISING clause&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;Exception Class CX_SY_CONVERSION_NO_NUMBER &lt;/P&gt;&lt;P&gt;Error Name CONVT_NO_NUMBER &lt;/P&gt;&lt;P&gt;Program CL_HRRCF_PROFILE_WORKEXP_DET_VCP &lt;/P&gt;&lt;P&gt;Include CL_HRRCF_PROFILE_WORKEXP_DET_VCM00D &lt;/P&gt;&lt;P&gt;ABAP Class CL_HRRCF_PROFILE_WORKEXP_DET_V &lt;/P&gt;&lt;P&gt;Analyze DO_HANDLE_DATA &lt;/P&gt;&lt;P&gt;Line 208  &lt;/P&gt;&lt;P&gt;Long text Das Argument '$23000.00' kann nicht korrekt als Zahl dargestellt werden.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;What I would like instead is a pop-up message that states users should not enter these values.  Is there any way that I can check this field and have a pop-up appear if an inappropriate value is entered?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Heather&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Mar 2007 18:05:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convt-no-number-error/m-p/1992295#M404671</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-26T18:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: CONVT_NO_NUMBER error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convt-no-number-error/m-p/1992296#M404672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check for appropriate domain with proper conversion routines, use that as field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Within chain and endchain validate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
if v_num co '1234567890'. 
  message e999(v1) 'Enter Numeric only!!'. 
endif.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aRs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Mar 2007 18:31:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convt-no-number-error/m-p/1992296#M404672</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-03-26T18:31:36Z</dc:date>
    </item>
    <item>
      <title>Re: CONVT_NO_NUMBER error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convt-no-number-error/m-p/1992297#M404673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;From what I can understand, the issue is related to a BSP in E-Recruiting. The validation can be done on the BSP ( either in the event_handler or the DO_HANDLE_EVENT of the Controller)  itself, instead of passing incorrect value to the backend. PL post it in the BSP Forum with additional info regarding the relevant BSP &amp;amp; you will get a lot more help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Mar 2007 18:33:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convt-no-number-error/m-p/1992297#M404673</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2007-03-26T18:33:40Z</dc:date>
    </item>
  </channel>
</rss>

