‎2007 Dec 06 6:35 AM
Hi everybody,
I have declared one parameter like..
PARAMETERS : p_loc(100) TYPE c.
and i am providing data like 'tmp' that is in samll case ...but , the field is getting
value as 'TMP' , this means it is changing the case .. so i need the data as i provided in the field..means if i provided in small case.. i need get as small only
plese help me on this issue..
thanx in advance...
‎2007 Dec 06 6:40 AM
Declare the parameter as
parameters:p_loc type text255.
If you need data element of length less than 255 search using text*
‎2007 Dec 06 6:45 AM
Hi,
try with lower case.
PARAMETERS : p_loc(100) TYPE c LOWER CASE.
Regards,
Maha
‎2007 Dec 06 6:46 AM
Hi,
Try using LOWER CASE in addition
<b>Regards,
siva chalasani
Reward points if found usefull</b>