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: 

Case sensitive attribute in variant

Former Member
0 Kudos
545

There is a way to set up a variant not to change the input to uppercase but to keep it case sensitive.

I forgot which attribute it is.

Help!

Thanks.

6 REPLIES 6

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos
199

Janet, you might want to try to specify lowercase in your parameters/select-options statement.



report zrich_0001.

tables: makt.


parameters: p_check type c lower case.
select-options: s_matkx for makt-maktx lower case.

Doing so may control the way the variant is stored.

Regards,

RIch Heilman

0 Kudos
199

I know there is a way to do it when you save a variant rather than making a programming change.

Anybody know?

0 Kudos
199

I don't see anything in my 46c system which would lead me to believe that you can control this when saving the variant.

Regards,

Rich Heilman

0 Kudos
199

I'm not sure how this could be done. After all, the parameter would get tranlated back to upper case when the program runs.

rob

Former Member
0 Kudos
199

PARAMETERS: p_test LOWER CASE.

Rob

0 Kudos
199

By declering like

parameters: p_check type c lower case.

u can achieve.