I have the last version of Xataface.
I have a sql request in my fields.ini with a left joint
- Code: Select all
__sql__="select a.givenName AS givenName, a.sn AS sn, b.otherTelephone AS otherTelephone, b.mobile AS mobile, b.telephoneNumber AS telephoneNumber, b.employeeID AS employeeID, b.sAMAccountName AS sAMAccountName from annuaire_jointure AS a NATURAL LEFT JOIN annuaire_export AS b where CHAR_LENGTH(b.otherTelephone)>0 OR CHAR_LENGTH(b.telephoneNumber)>0 OR CHAR_LENGTH(b.mobile)>0"
Then I add a statement on 2 fields
- Code: Select all
[employeeID]
visibility:list = hidden;
visibility:browse = hidden
visibility:edit = hidden
[sAMAccountName]
visibility:list = hidden
visibility:browse = hidden
visibility:edit = hidden
But the two fields appear in my list. What is wrong or what could I do ?
Thank you
Jean