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 type c

Former Member
0 Likes
624

hi,

i have defined a input field " type c "for the selection screen in which the user can write his name ,after giving the name in the lower case when i press enter it will converted to upper case why this is happening as i m passing this variable to smartforms there it is also showing in upper case which i dont want,plz help me....i want the name in the same name as i enter in the selection screen ........

Message was edited by:

ravi

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
595

Hi,

PARAMETERS: p_name TYPE c LOWER CASE.

use this it will work.

Reward points if useful.

Regards,

Vimal

3 REPLIES 3
Read only

Former Member
0 Likes
596

Hi,

PARAMETERS: p_name TYPE c LOWER CASE.

use this it will work.

Reward points if useful.

Regards,

Vimal

Read only

Former Member
0 Likes
595

hi

use like this

<b>PARAMETERS : NAME(10) TYPE C lower case.</b>

then it will take as lower case letter only

reward if usefull

Read only

varma_narayana
Active Contributor
0 Likes
595

Hi Ravi..

Character fields are by default Converted to Upper case in SAP .

So we can avoid this by declaring a PARAMETER or SELECT-OPTIONS like this..

PARAMETERS: p_field(10) TYPE c LOWER CASE.

<b>Reward if Helpful</b>