cancel
Showing results for 
Search instead for 
Did you mean: 

IMP: How to make the Input Field Case sensitive

Former Member
0 Kudos

Hi All,

I have created a Web Dynpro Apllication with many Input Fields.

I want to make the value in the Input Field Csae Sensitive.

As soon as I enter a value in the input field and press enter the Text gets converted to Upper Csae.

I do not want this conversion. I want the Text to be as it is entered.

Kindly help me out.

Regards,

Sweta

Accepted Solutions (1)

Accepted Solutions (1)

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

This has to do with the domain of the data dictionary element you are using. You either need to use the native type STRING or make sure the domain of the data dictionary element has the lower case checkbox set.

Former Member
0 Kudos

Hello Thomas,

The same application is simultaneously being developed in Module Pool too.

I do not face this problem there.

Regards,

Sweta

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

>

> Hello Thomas,

>

> The same application is simultaneously being developed in Module Pool too.

> I do not face this problem there.

>

> Regards,

> Sweta

That doesn't change the requirements that I listed to acomplish this in Web Dynpro ABAP.

Former Member
0 Kudos

I cannot set the Lower Case at Domain level.

Say I have a field ABC of predefined type char50.

In Web dynpro I enter the value as : ABC = TesTabC

on pressing enter it gets converted to TESTABC whereas I want it to be as TesTabC.

Regards,

Sweta

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

>

> I cannot set the Lower Case at Domain level.

>

> Say I have a field ABC of predefined type char50.

>

> In Web dynpro I enter the value as : ABC = TesTabC

>

> on pressing enter it gets converted to TESTABC whereas I want it to be as TesTabC.

>

>

> Regards,

> Sweta

Then don't use CHAR50. Either use type STRING or create a Data Dictionary Element so you can control the domain level or find a different Data Dictionary element that meets your criteria.

Former Member
0 Kudos

Thanks a Lot Thomas !

Answers (0)