‎2008 Jan 08 9:14 AM
i want to ask
if zparam = 'X' if it upper 'X' or lower 'x'
what the command???
‎2008 Jan 08 9:16 AM
‎2008 Jan 08 9:18 AM
‎2008 Jan 08 9:18 AM
‎2008 Jan 08 9:20 AM
hai,
come clearly........
and give the purpose of this check.
regards,
jai.m
‎2008 Jan 08 9:22 AM
Hi,
U mean to say that u have a radio button on the screen. based on that u need to convert the text to upper or lower?
try this,
if r_upper = 'X'.
translate l_str to upper case
else.
translate l_str to lower case
endif.
reward points if useful,
regards,
Niyaz
‎2008 Jan 08 9:24 AM
If you want to check a variable is having upper case or lower case...use the following...
if zparam ca sy-abcde.
write:/ 'Upper'.
else .
write:/ 'lower'.
endif.
‎2008 Jan 08 9:39 AM
Hi,
this code display just UPPER :
PARAMETERS : zparam(1) TYPE c.
IF zparam CA sy-abcde.
WRITE:/ 'Upper'.
ELSE .
WRITE:/ 'lower'.
ENDIF.
!!!!
Mustapha