‎2016 Apr 07 7:42 AM
Hi Experts,
When am reading internal table into work area by using binary search performance is too good, only if it contains numeric values but if internal table contains any alphabetic values search is failing so i just need alternative way to find records without using linear search as internal table contains huge records.
‎2016 Apr 07 2:30 PM
Binary Search will work even if the key fields are non-numeric. It may be a stupid question, but I hope you are sorting the table by all the search key fields in ascending order before performing the search?
‎2016 Apr 07 2:48 PM
Key field contain both numeric and non numeric values that time search is failing.
‎2016 Apr 13 11:57 AM
If it's a READ reference, can't you make this table of type sorted with unique key, or hashed?