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: 

Problem with lowercase when saving in custom SAP table.

Former Member
0 Kudos

Hi Gurus,

I have a problem in saving entries in a custom table in SAP.

When I enter a name with combinations of upper and lower case in SE16, when saving, my entries were all converted into uppercase. That goes as well in passwords. That's my concern, how can I check passwords if combinations were disregarded?

My parameter fields for these were just type CHAR.

Is there a way I can save data as how they were entered?

Thank you in advance for your responses Gurus...

3 REPLIES 3

martin_voros
Active Contributor
0 Kudos

Hi,

you can define your own domain in SE11. There is a chec kbox "lowercase". You need to tick this check box to allow lower case characters. Then use your domain in your custom table.

Cheers

Former Member
0 Kudos

Hi,

Check the Domain of the field and select Lower case check box if it is a Zdomain or else create the new domain or check for one like this.For example..

Table PA0002 which has a field NACHN and Data element assigned to it is PAD_NACHN...double click on the Data element and now again double click on the Domain and now Under Ouput Characteristics check the Lower Case check.

And now database get's saved with what ever case you entered

Former Member
0 Kudos

Thanks gurus!