1
Describe the core capabilities of the finance and operations apps
hard
Refer to the exhibit. A validation rule configuration for Dynamics 365 Finance and Operations is shown. What happens when a user enters a vendor invoice with an invoice date of tomorrow and a total amount of $100?
Exhibit
Refer to the exhibit.
```
{
"Entity": "VendorInvoiceHeader",
"Action": "Validate",
"Rules": [
{
"Field": "InvoiceDate",
"Condition": "InvoiceDate <= Today",
"Error": "Invoice date cannot be in the future"
},
{
"Field": "TotalAmount",
"Condition": "TotalAmount > 0",
"Error": "Total amount must be positive"
}
]
}
```