CHECKCOLUMNEXIST
Cette fonction permet de vérifier si un champ d’une certaine table existe sur l’appareil mobile. Le paquet de synchronisation Anveo définit les tables et les champs de Dynamics qui sont envoyés à l’appareil mobile.
bool Record.CheckColumnExist(string FieldName); example: local foo = Record(‘foo’); if foo.CheckColumnExist(‘bar’) then foo.SETRANGE(‘bar’, 1); end;