The triggers for DataType as Table are as follows:
- Import::OnAfterInsertRecord() for Import only: This trigger is typically used when the data is being imported into Temporary tables. This is where we would put the C/AL code to build and insert records for the permanent database tables.
- Import::OnBeforeModifyRecord(), for Import only: When AutoSave is Yes, this is used to update the imported data before saving it.
- Import::OnAfterModifyRecord(), for Import only: When AutoSave is No, this is used to update the data after updating.
- Export::OnPreXMLItem(), for Export only: This trigger is typically used for setting filters and initializing before finding and processing the first database record.
- Export::OnAfterGetRecord()