External business events provide partners and customers a mechanism for notifying and triggering their external systems from the Business Central application, so their systems can react and perform actions in response. For example, they can use Power Automate to subscribe to events on Business Central and react on other Dynamics 365 and partner (non-Microsoft) applications.
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. |