<?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 How to check the data type dynamically in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-check-the-data-type-dynamically/m-p/4504584#M1065675</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my requirement is like this  in one screen field which is of character type user is inputing data .&lt;/P&gt;&lt;P&gt;now while saving to the database i have to apply one external check for this data if it is integer type or not &lt;/P&gt;&lt;P&gt;as this data on the screen is refrenced to the database so i can not change the data type on the screen itself .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have to check it externally from PAI ....... would any one please help on this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards &lt;/P&gt;&lt;P&gt;Papps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Sep 2008 16:10:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-29T16:10:43Z</dc:date>
    <item>
      <title>How to check the data type dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-check-the-data-type-dynamically/m-p/4504584#M1065675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my requirement is like this  in one screen field which is of character type user is inputing data .&lt;/P&gt;&lt;P&gt;now while saving to the database i have to apply one external check for this data if it is integer type or not &lt;/P&gt;&lt;P&gt;as this data on the screen is refrenced to the database so i can not change the data type on the screen itself .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have to check it externally from PAI ....... would any one please help on this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards &lt;/P&gt;&lt;P&gt;Papps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 16:10:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-check-the-data-type-dynamically/m-p/4504584#M1065675</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T16:10:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to check the data type dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-check-the-data-type-dynamically/m-p/4504585#M1065676</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;Try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;If w_field co '0123456789 '.
* Numeric
else.
* Non Numeric
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Darren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 16:12:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-check-the-data-type-dynamically/m-p/4504585#M1065676</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T16:12:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to check the data type dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-check-the-data-type-dynamically/m-p/4504586#M1065677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try out the ABAP Runtime Type Services (RTTS).  This service lets you do all kinds of things dynamically at runtime. Refer to the class "cl_abap_structdescr"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For information and examples search the SDN on RTTS or RTTI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Ian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 16:34:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-check-the-data-type-dynamically/m-p/4504586#M1065677</guid>
      <dc:creator>ian_maxwell2</dc:creator>
      <dc:date>2008-09-29T16:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to check the data type dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-check-the-data-type-dynamically/m-p/4504587#M1065678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thanks for your Solution i have tried it but your proposed solution is not working &lt;/P&gt;&lt;P&gt;even if am providing all integers like 123 still it is giving me the error message .&lt;/P&gt;&lt;P&gt;its always showing the error message is there any other way ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 16:36:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-check-the-data-type-dynamically/m-p/4504587#M1065678</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T16:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to check the data type dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-check-the-data-type-dynamically/m-p/4504588#M1065679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you included a space in the string '0123456789 '?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Space is required in the checking string, because your field will have space apartform digits.&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>Mon, 29 Sep 2008 16:44:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-check-the-data-type-dynamically/m-p/4504588#M1065679</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2008-09-29T16:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to check the data type dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-check-the-data-type-dynamically/m-p/4504589#M1065680</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; Thanks again you are right i missed the space one ..&lt;/P&gt;&lt;P&gt;but Now another problem...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I have tried that but in that case even user can input data by mistake like this &lt;/P&gt;&lt;P&gt; 123 4  but this is not an integer it should also give error as this is also not a correct integer ...&lt;/P&gt;&lt;P&gt;as par asi think . we have to aain check if there is any spaces in the data provided i guess or &lt;/P&gt;&lt;P&gt;is there any other procedure ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 16:55:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-check-the-data-type-dynamically/m-p/4504589#M1065680</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T16:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to check the data type dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-check-the-data-type-dynamically/m-p/4504590#M1065681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would use condense and don't worry about it&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 16:57:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-check-the-data-type-dynamically/m-p/4504590#M1065681</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T16:57:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to check the data type dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-check-the-data-type-dynamically/m-p/4504591#M1065682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see this: &lt;A href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b332e090-0201-0010-bdbd-b735e96fe0ae" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b332e090-0201-0010-bdbd-b735e96fe0ae&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 17:03:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-check-the-data-type-dynamically/m-p/4504591#M1065682</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T17:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to check the data type dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-check-the-data-type-dynamically/m-p/4504592#M1065683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Okay &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway thanks for your suggessions i have also added the points for you as its almost solved the problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 17:12:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-check-the-data-type-dynamically/m-p/4504592#M1065683</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T17:12:28Z</dc:date>
    </item>
  </channel>
</rss>

