<?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: HI in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3283287#M785244</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;apart from above FM  you can try this code....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : p_text TYPE char20.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF NOT p_text CA sy-abcde.&lt;/P&gt;&lt;P&gt;  WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'All numerics'.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;  WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'Not all numerics'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Jan 2008 09:28:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-02T09:28:41Z</dc:date>
    <item>
      <title>HI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3283281#M785238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IN FUNCTION MODULE NUMERIC_CHECK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHAT VALUE SHOULD BE GIVEN IN STRING IN AND STRING OUT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jan 2008 09:20:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3283281#M785238</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-02T09:20:19Z</dc:date>
    </item>
    <item>
      <title>Re: HI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3283282#M785239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: st type string value '1234',&lt;/P&gt;&lt;P&gt;h_type type dd03l-datatype.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'NUMERIC_CHECK'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;STRING_IN = st&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;STRING_OUT = st&lt;/P&gt;&lt;P&gt;HTYPE = H_TYPE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;string_in is the variable you want to check.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;string_out is optional....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jan 2008 09:24:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3283282#M785239</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-02T09:24:20Z</dc:date>
    </item>
    <item>
      <title>Re: HI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3283283#M785240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REPORT  ZSDN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: STRING_IN TYPE STRING,&lt;/P&gt;&lt;P&gt;      STRING_OUT TYPE STRING.&lt;/P&gt;&lt;P&gt;DATA: HTYPE LIKE DD01V-DATATYPE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STRING_IN = 'AA'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'NUMERIC_CHECK'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    STRING_IN  = STRING_IN&lt;/P&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;P&gt;    STRING_OUT = STRING_OUT&lt;/P&gt;&lt;P&gt;    HTYPE      = HTYPE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: / STRING_OUT,&lt;/P&gt;&lt;P&gt;         HTYPE.  " It returns the datatype&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jan 2008 09:24:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3283283#M785240</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-02T09:24:46Z</dc:date>
    </item>
    <item>
      <title>Re: HI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3283284#M785241</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;Just pass whatever in string_in when calling the function module and it will return a new string in string_out and its type in HTYPE fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try it in SE37 to see what I mean.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;George&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jan 2008 09:24:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3283284#M785241</guid>
      <dc:creator>George_Lioumis</dc:creator>
      <dc:date>2008-01-02T09:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: HI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3283285#M785242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ramya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;function numeric_check.&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;*"Lokale Schnittstelle:&lt;/P&gt;&lt;P&gt;*"       IMPORTING&lt;/P&gt;&lt;P&gt;*"             STRING_IN -&amp;gt; pass the variable to be checked&lt;/P&gt;&lt;P&gt;*"       EXPORTING&lt;/P&gt;&lt;P&gt;*"             STRING_OUT -&amp;gt; same variable as STRING_IN&lt;/P&gt;&lt;P&gt;*"             HTYPE LIKE DD01V-DATATYPE -&amp;gt; create a variable with reference to this parameter. This field will show the result.&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward point(s) if this has helped you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jan 2008 09:25:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3283285#M785242</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-02T09:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: HI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3283286#M785243</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;    the function module retrns the data type of a given string.&lt;/P&gt;&lt;P&gt;   INstring should be the value u enter , string out is output of the string &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg&lt;/P&gt;&lt;P&gt;     when u execute this function module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'Numeric_check'&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;  string_in = '1213232'&lt;/P&gt;&lt;P&gt;importing &lt;/P&gt;&lt;P&gt;  string_out = val_string&lt;/P&gt;&lt;P&gt;  Htype = vval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wal will have the data type .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the above eg val_string will be 123232&lt;/P&gt;&lt;P&gt;and  wal will be 'NUMC'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Santosh Thorat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jan 2008 09:25:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3283286#M785243</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-02T09:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: HI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3283287#M785244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;apart from above FM  you can try this code....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : p_text TYPE char20.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF NOT p_text CA sy-abcde.&lt;/P&gt;&lt;P&gt;  WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'All numerics'.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;  WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'Not all numerics'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jan 2008 09:28:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3283287#M785244</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-02T09:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: HI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3283288#M785245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ramya,&lt;/P&gt;&lt;P&gt;  Go to se37, give ur function module name&lt;/P&gt;&lt;P&gt;and u can get the meaning for that importing and exporting fields not for this FM, for all other FM also.&lt;/P&gt;&lt;P&gt;Here,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'NUMERIC_CHECK'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;STRING_IN = ' value to be checked '&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;STRING_OUT = ' optional '&lt;/P&gt;&lt;P&gt;HTYPE = 'type of that variable'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;guna..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jan 2008 09:35:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3283288#M785245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-02T09:35:09Z</dc:date>
    </item>
  </channel>
</rss>

