<?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: How check a Character Variable? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-check-a-character-variable/m-p/980864#M71908</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, try following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: htext(10) Type C.&lt;/P&gt;&lt;P&gt;data: compare(52) type c &lt;/P&gt;&lt;P&gt;value 'ABCDEFG.....Zabcdefghi....z'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;52 alphabet include upper case and lower case&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;htext = '500 KG'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if compare CA htext.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;include alphabet &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;else.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;doesn't include alphabet&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this is helpful&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 Sep 2005 14:16:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-09-05T14:16:29Z</dc:date>
    <item>
      <title>How check a Character Variable?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-check-a-character-variable/m-p/980862#M71906</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;I having the following code below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: htext(10) Type C.&lt;/P&gt;&lt;P&gt;htext = '500 KG'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a Function to know that "htext" has Alphabetical characters as shown in the following example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Kishan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Sep 2005 13:49:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-check-a-character-variable/m-p/980862#M71906</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-05T13:49:31Z</dc:date>
    </item>
    <item>
      <title>Re: How check a Character Variable?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-check-a-character-variable/m-p/980863#M71907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kishan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could do something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; if htext ca sy-abcde.  ...  endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kind regards&lt;/P&gt;&lt;P&gt;Pieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Sep 2005 13:56:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-check-a-character-variable/m-p/980863#M71907</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-05T13:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: How check a Character Variable?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-check-a-character-variable/m-p/980864#M71908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, try following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: htext(10) Type C.&lt;/P&gt;&lt;P&gt;data: compare(52) type c &lt;/P&gt;&lt;P&gt;value 'ABCDEFG.....Zabcdefghi....z'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;52 alphabet include upper case and lower case&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;htext = '500 KG'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if compare CA htext.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;include alphabet &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;else.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;doesn't include alphabet&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this is helpful&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Sep 2005 14:16:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-check-a-character-variable/m-p/980864#M71908</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-05T14:16:29Z</dc:date>
    </item>
    <item>
      <title>Re: How check a Character Variable?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-check-a-character-variable/m-p/980865#M71909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks All, Points awarded.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Sep 2005 15:12:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-check-a-character-variable/m-p/980865#M71909</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-05T15:12:28Z</dc:date>
    </item>
  </channel>
</rss>

