Reputation: 21
I am building a scheduler. This scheduler will check all users' course end date and send email to notify them to complete their course. But it should not send to those users who have completed their course. I am unable to track users' course completion record.
I found a useful link from https://docs.moodle.org/27/en/ad-hoc_contributed_reports to complete this. But found that in any case mdl_course_completion is not updating.
I just want to know that when mdl_course_completion is updating.
How can I complete the users' course and when mdl_course_completion is updating.
Upvotes: 0
Views: 1584
Reputation: 554
The course_completions table should update regularly if two items are set correctly:
If these are both setup, the course_completions table should update with any new completions every time the cron command is set to execute.
Hope this is useful - good luck!
Upvotes: 1