‎2005 Sep 05 2:49 PM
Hi,
I having the following code below.
Data: htext(10) Type C.
htext = '500 KG'.
Is there a Function to know that "htext" has Alphabetical characters as shown in the following example.
Thanks,
Kishan
‎2005 Sep 05 2:56 PM
Hi Kishan,
You could do something like this
if htext ca sy-abcde. ... endif.kind regards
Pieter
‎2005 Sep 05 2:56 PM
Hi Kishan,
You could do something like this
if htext ca sy-abcde. ... endif.kind regards
Pieter
‎2005 Sep 05 3:16 PM
hi, try following code:
Data: htext(10) Type C.
data: compare(52) type c
value 'ABCDEFG.....Zabcdefghi....z'.
52 alphabet include upper case and lower case
htext = '500 KG'.
if compare CA htext.
include alphabet
else.
doesn't include alphabet
endif.
hope this is helpful
thanks
‎2005 Sep 05 4:12 PM