17.11.2014, 16:11 | #1 |
Участник
|
palleagermark: Thoughts on validateField
Источник: http://www.agermark.com/2014/11/thou...datefield.html
============== Here is a couple of thoughts on how to write validateField methods in the best possible way. The validateField method is automatically called when you change a field value of a record in the client. There are two things about validateField, that I haven't been able to figure out:
One example of this, is the many errors you get from Currency: In this case you could add code to see if the value actually is changed. Also some validations should check that the field actually has value. One example from standard AX of a validation not doing this is license plate validation on warehouse locations, where a blank value in some fields will give you this error: Here the validation looks up another location using a blank value, and the returned flag for License Plate Control will of course be blank. Don’t update data in a validation method. You should always be able to call a validation method without risking any data to change in the system. Changes should be moved to the modifiedField, modifiedFieldValue, update or insert method. Don't display any dialogs from the table based validation method without checking if the validation method is being triggered from a form data source. The code analysis tool on LCS will report this as a Best Practice issue, as the validation could be called from a server tier. Consider moving these dialogs to the forms where needed. Источник: http://www.agermark.com/2014/11/thou...datefield.html
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору. |
|
|
|