Clever Data Validation adds the following business events.

  • DataValidationPassed
  • DataValidationFailed

DataValidationPassed

This event is fired when a data validation has successfully passed. This may be used in scenarios where a new master data record is complete and you wish to notify users that it is now available.

The event has the following parameters:

Name Type Size Description
Table Name Text 30 The name of the table the data validation check relates to. This can be used if you only want to process events relating to certain tables.
Row ID Guid Identifies the record in the table the data validation check was performed on. This can be used to retrieve the record using the GetRecord function in Power Automate.
User E-Mail Text 100 The e-mail address of the user running the data validation check.


DataValidationFailed

his event is fired when a data validation has failed. This may be used in scenarios where a new master data record has failed data validation and you wish to notify a user to review it.

The event has the following parameters:

Name Type Size Description
Table Name Text 30 The name of the table the data validation check relates to. This can be used if you only want to process events relating to certain tables.
Row ID Guid Identifies the record in the table the data validation check was performed on. This can be used to retrieve the record using the GetRecord function in Power Automate.
User E-Mail Text 100 The e-mail address of the user running the data validation check.