RE: Send reminder after document is expired
Hi MRak,
We cannot customize Notes entity to capture Document Expiration Date.
But you can check if the below two solutions works for you.
1. Create a custom entity and add new field 'Document Expiry Date'. Add 1:N relationship between your main entity and custom entity. Whenever a new document required to add, create this custom entity record along with Document Expiry Date and document as a note attachment.
2. Follow some naming convention/keyword to capture expiry date inside the notes text. This is little risky as there are chances of typo in entering this keyword.
Example, Expiry Date: 22/12/2023. Here 'Expiry Date:' is a keyword and the text after this keyword is a date value.
Finally, create a console application which reads expiry date from custom entity (solution #1) or notes text (solution #2) and schedule this application as a Web Job using Azure Scheduler to run daily.