1 I would perform this check in table-trigger OnModify. Recommended to do it via Events. 2 Property NotBlank does only work on fields that are part of primary-key. 3 Property ShowMandatory only informs the user, that the field should contain some value. It does not demand anything. Otherwise: More correct syntax is using FIELDCAPTION: ERROR('Please insert a value into the field "%1".', FIELDCAPTION("Client Code")); And to be perfect, use Textconstants ;)
↧