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

issue with case sensitive

Former Member
0 Likes
470

Hi all,

I am reading data from a ztable into itab and displaying it in a table control.

iam moving itab to itab1.

The table control fields are modifiable .

when i click save i am comparing itab with itab1 even though i haven't made any changes

it says both the internal tables are not same.

one thing i found , i have couple character fields.

The case sensitive is changing for some of the fields.

LET ME KNOW HOW CAN I IGNORE CASE SENSITIVE WHEN I COMPARING TWO INTERNAL TABLES.

Thanks

1 ACCEPTED SOLUTION
Read only

suresh_datti
Active Contributor
0 Likes
444

one option is to convert them to UPPER CASE first & then do the comparison.

~Suresh

2 REPLIES 2
Read only

suresh_datti
Active Contributor
0 Likes
445

one option is to convert them to UPPER CASE first & then do the comparison.

~Suresh

Read only

Former Member
0 Likes
444

Hi Venki,

Before comparing the fields maintain them in the LOWERCASE/UPPER CASE.

Use TRANSLATE statement to convert them either to LOWER CASE/UPPER CASE.

Thanks,

Vinay