‎2008 Sep 22 2:05 PM
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
‎2008 Sep 22 2:26 PM
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
‎2008 Sep 22 2:29 PM
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
‎2008 Sep 22 2:32 PM
And possibly: go to the screen attribute of your input field and (un)check the upper/lower case checkbox.
‎2008 Sep 22 9:12 PM
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.
‎2008 Sep 24 11:27 AM
I solved by screen painter: there is a field upper/lower case that once checked avoid upper case conversione.