Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

regarding selection parameter

Former Member
0 Likes
494

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...

[email protected]

3 REPLIES 3
Read only

former_member195698
Active Contributor
0 Likes
475

Declare the parameter as

parameters:p_loc type text255.

If you need data element of length less than 255 search using text*

Read only

Former Member
0 Likes
475

Hi,

try with lower case.

PARAMETERS : p_loc(100) TYPE c LOWER CASE.

Regards,

Maha

Read only

Former Member
0 Likes
475

Hi,

Try using LOWER CASE in addition

<b>Regards,

siva chalasani

Reward points if found usefull</b>