cancel
Showing results for 
Search instead for 
Did you mean: 

Extended value help ignore case-sensitive validation check ?

Former Member
0 Kudos

hi all:

In my task.

I have one input field named as currency, the input field has a extended value help, which get all values from BAPI.

all values inside value help is upcase, like SGD, USD.

When user input sgd ( lowcase ) in this input field, he will get the validation message, not in validate values.

Can I make these validation check to ' no case-sensitive check ' ?

Because in SAP R/3, the value seems to be automatically transfered to upper case.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hello,

I have the same problem with my value helps. Have you got a solution for this problem, yet?

Kind regards,

Benjamin Biedermann

Former Member
0 Kudos

Hi jianhong,

When you are inserting or saving the data into the database, use yourValue.toUpperCase() method and save. The data will then be saved in uppercase and you will not have any comparison problems..

Regards

Kiran..

Former Member
0 Kudos

Thanks.

I used this way.

But there is still one problem.

Because in modifyView method, it will call the check, and the check will return me the error message.

So I tried to uppcase the value in modifyView method, but if I do it. The screen will flash one time, and I have to clicked 2 times to make 'review' button works.