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

Conversion Rules

Former Member
0 Likes
787

hi

I am new in Abap and I have a little problem: I set an input field on my screen type string. When I process the text in it in PAI, i see the text has been converted to lower case. In debug I see that when the PAI start the text has already been converted in upper case, so I realize that a default conversion rule has been applied. Is there a way to tell that for a field there is no need to apply a conversion rule? Or a conversion that do not change lower to upper?

I see that for parameter there is syntax "LOWER" to let unchanged the case of the parameter, but I can't believe there is no way to do it with a simple input field.

Thanks

Gabriele

5 REPLIES 5
Read only

naimesh_patel
Active Contributor
0 Likes
742

In the domain of your field, you must check the checkbox "Lower Case" to retain the lower case values entered on the screen.

If your screen field refers to any standard field than you might have to find the field which has the Lowercase checked on.

You can find the appropriate domains from the table DD01L.

Regards

Naimesh Patel

Read only

Former Member
0 Likes
742

the field which u have given in the screen.

check the field type.

if the type refers to a zdatatype.then u have option

open the dataelement --.>double click on that >double click the domain->

below u can find a option call LOWER CASE tick that.....

Else.

u have to use the LOWER CASEsyntex

Regards

Anbu B

Read only

Former Member
0 Likes
742

And possibly: go to the screen attribute of your input field and (un)check the upper/lower case checkbox.

Read only

Former Member
0 Likes
742

Please do not double post to multiple forums!

Please read [the rules|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement] before posting further.

Read only

Former Member
0 Likes
742

I solved by screen painter: there is a field upper/lower case that once checked avoid upper case conversione.