Hi,
We have a TABLE that's being displayed using DISPLAY ARRAY (in unbuffered, non-paging mode). One of the column is of alpha numeric type, where values are a combination of number and letters. E.g. 1A, 1B, 1C, 2A, 2B .., 10, 11, 12A, etc... When we let the frontend handle he sorting, it's sorting alphabetically: 1A, 1B, 1C, 10, 11, 12A,...2A, 2B...
We have been able to work around this by creating a PHANTOM field in the array to pad the values with "0"s to get the values to sort "naturally".
The problem is that in UNBUFFERED and non-paging mode, we do not have any control over what the program should use to sort this column. Our current work around is converting this DISPLAY ARRAY to paging mode (ON FILL BUFFER), so that ON SORT method, we resort the array using the PHANTOM field. We think this is a bit of a hack.
Is there a feature/attribute where we can set the sorting column for a given table column -- similar to the IMAGECOLUMN attribute?