‎2008 May 23 6:11 AM
Hi all,
Can anybody tell me
Operator by which internally it not consider the case(Upper case or lower case)and accordingly fetch the data.
For ex if we enter Either
Ram or ram of Ram.
Consider all the same.
Best Regards,
Aastha
‎2008 May 23 6:32 AM
orig_value = 'Ram'.
tmp_value = orig_value.
translate tmp_value to upper case.
case tmp_value.
when 'RAM'.
do_something.
when 'ROM'.
do_somehting_else.
when others.
do_error_handling.
endcase.
‎2008 May 23 6:32 AM
orig_value = 'Ram'.
tmp_value = orig_value.
translate tmp_value to upper case.
case tmp_value.
when 'RAM'.
do_something.
when 'ROM'.
do_somehting_else.
when others.
do_error_handling.
endcase.
‎2008 May 23 6:55 AM
Hello Rainer,
Can u tell me the particular case insensitive function.
Best Regards,
Aastha
‎2008 May 23 6:58 AM
‎2008 May 23 7:43 AM
Hello again Rainer,
I m asking that whether we enter in selection screen(for ex)
Ram or
RAM or
rAm or
all such possible combinations.
I m asking any logic, so that my report will consider all these combination same and fetch the records.
Best Regards,
Aastha