CompanyInfo table field validation

Dear All

AX standard table called CompanyInfo

field is (CompanyInfo.DataArea) how can i wite code to validate 3 operation on that field only

1.insert()

2.Update()

3.delete()

while this operation happen to this particular field called (CompanyInfo.DataArea) i want to trigger some action.so how can i valiadate these 3 opeartion on that particular field only and what will be the method like table overide metod or others,where i have to write method.

Please share your opinion.

I don’t understand the question very well, but… are you looking for validateWrite() and validateDelete() method? There you can check for the value of DataArea and run your validations.

If you need to fire off an asynchronous process when these are successfully inserted/updated, then you should look in to eventing.

S