Hi,
The invalid field name error that you received was because the Denodo Platform could not find a field name ‘WBSInternalNbr’ in the ‘ProjectStatusCs’ view in the ‘finance’ virtual database. I was able to reproduce the error by misspelling the name of the field in my ORDER BY clause. You should check for the existence of the field ‘WBSInternalNbr’ in your view and ensure that the spelling is correct in your VQL query. If the field name is spelled correctly then you will need to put it into double quotation marks as you did for the name of the view as it looks like the column name is case-sensitive.
`SELECT * FROM finance."ProjectStatusCs" order by "WBSInternalNbr" limit 10`
For more details, you can refer to the [Identifiers Charset](https://community.denodo.com/docs/html/browse/8.0/en/vdp/administration/server_configuration/identifiers_charset/identifiers_charset) section of the Virtual DataPort Administration Guide.
Hope this helps!