Problema con ORDER BY en campo de búsqueda refinada con la versión 9.2

Tengo un problema con la nueva versi?n 9.2, NO ORDENA por un campo con lookup:

SELECT pais
FROM paises
WHERE id = ‘{idPais}’
ORDER BY pais

en las versiones anteriores me funciona sin problemas… alguien se ha encontrado con el problema.

Gracias

El problema es que siempre lo ordena por el ID de la tabla y no consigo que lo ordene por otro campo.

He puesto varias consultas en el foro de Scriptcase y casi nunca responde nadie. Considero que deber?a haber alguien de soporte que ayudara un poco, incluso en alguna ocasi?n he pagado soporte por alg?n problema puntual y nunca han sabido ayudarme… Llevo m?s de 10 a?os con Scriptcase y me parece una herramienta fantastica, pero el soporte y las ayudas dejan mucho que desear.
Gracias.

it would be enough to make a concat (id_pais, other fields of the table) as new_idpais, then to make an order by on this complementary field and everything should work,

Thank you for your help.

Keep sorting by ID, but also show me the ID+PAIS

1ITALIA
2ESPA?A
3ALEMANIA

When it should be:

ALEMANIA
ESPA?A
ITALIA

this id is complementary, it must be hidden or not apparent, and just use the basic id, the concat serves only sorting and is not visible, in your place I would put the concat in the order by and not in the select:
SELECT pais
FROM paises
WHERE id = ‘{idPais}’
ORDER BY concat (idPais, pais ) ASC

it does not work, it does exactly the same with order by that without