Application Development and Automation 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: 
Read only

Case sensitive attribute in variant

Former Member
0 Likes
1,383

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
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
1,037

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

Read only

0 Likes
1,037

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

Anybody know?

Read only

0 Likes
1,037

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

Read only

0 Likes
1,037

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

Read only

Former Member
0 Likes
1,037

PARAMETERS: p_test LOWER CASE.

Rob

Read only

0 Likes
1,037

By declering like

parameters: p_check type c lower case.

u can achieve.