SmartClient Version: v13.0p_2023-08-15/Enterprise Development Only (built 2023-08-15)
Oracle 19c
Hello, if I add a dsRequest.setSortBy on a field which is includedFrom, I see this WARN:
and the fieldName in the "order by" lacks the table name.
Could you please explain what is causing the warning and if it's the reason for not having the table name before the column name? Is it expected?
The field is defined as:
and the foreign key field:
please let me know if you need more details.
Oracle 19c
Hello, if I add a dsRequest.setSortBy on a field which is includedFrom, I see this WARN:
WARN SQLOrderClause Building order by clause, could not locate the correct index for includeFrom field ROLE (AUTH_ROLES.ROLE)
Could you please explain what is causing the warning and if it's the reason for not having the table name before the column name? Is it expected?
The field is defined as:
Code:
<field name="ROLE" type="text" includeFrom="AUTH_ROLES.ROLE" includeVia="ID_ROLE_FK"/>
Code:
<field name="ID_ROLE_FK" type="integer" foreignKey="AUTH_ROLES.ID_REC" relatedTableAlias="ROLES" required="true"/>
Comment