Task update using microflow / workflow

0
Hi I have a scenario in my project where I need to update tasks based on cycles like daily, weekly, monthly, yearly etc. And once I update the task ,suppose it is a daily task then the task should appear tomorrow again. And same goes for other cycles.How can I implement the task hiding once completed.  
asked
1 answers
2

To upadte the task use a scheduled event that selects the task based on a date and a type (daily/weekly etc).

Update a datetime attribute that should indicate when the task should be visible again. For example in a datagrid you could add a xpath to select the tasks that have a value in the datetime attribute that is greater then the begin of current day. Like:

[yourDateTimeAttribute >= '[%BeginOfCurrentDay%]']

 

answered