Forum Discussion
Liza-123
Nov 21, 2018Copper Contributor
Email notifications to SharePoint users if a file is checked out for long time.
Hi, I want to send SharePoint users automated email notifications if a file is left checked out for long time (say after 24 hours) and then send regular reminder till the file is checked in. I a...
Nov 21, 2018
I think this cannot be done without development.
- Liza-123Nov 21, 2018Copper ContributorI am open to development option, can you please elaborate more on how can i do it with coding?
- Heiko WatzNov 26, 2018Iron Contributor
Try PowerShell with SharePoint PNP.
Get all List-Items who ‘CheckoutUser’ is not empty.
CAML:
<Query>
<Where>
<IsNotNull>
<FieldRef Name='CheckoutUser' />
</IsNotNull>
</Where>
</Query>
But there isn’t a check out date field ☹
Try to use the Modified field.