It looks like you're new here. Sign in or register to get started.
juanborras wrote: Hi! it is possible? I'm coding a migration process with a codeunit and I need to fire a field trigger on the table Item, any ideas? Thanks
Comments
if it is Field - OnValidate() that you want to fire, then simply Validating the value in the field will do the trick.
ItemRec.VALIDATE(FieldName) if you just want to validate the existing field value or
ItemRec.VALIDATE(FieldName,FieldValue) if you want to validate the field with a new value.
Read the Help