Application Development 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: 

regarding type c

Former Member
0 Kudos

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

Former Member
0 Kudos

Hi,

PARAMETERS: p_name TYPE c LOWER CASE.

use this it will work.

Reward points if useful.

Regards,

Vimal

3 REPLIES 3

Former Member
0 Kudos

Hi,

PARAMETERS: p_name TYPE c LOWER CASE.

use this it will work.

Reward points if useful.

Regards,

Vimal

Former Member
0 Kudos

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

varma_narayana
Active Contributor
0 Kudos

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>