AEM Workflow : Set Due Date in the AEM Inbox Console for the Work Item of the Participant
Hello ,
I have created a Participant chooser class which will have a participant and this participant needs to complete the step (not task ) before due date . I need to set a Due Date in the Due date column of the Inbox console. Am using Granite API not cq API's.
Code :
workItem.setDueTime(currentDate); - This is to set Due date for the workitem
workitem.getDueTime() - This is the date which is supposed to give me the set due date of the workitem
Here , workItem.setDueTime(currentDate) is not showing the date in the Due Date column of AEM Workflow Inbox .
Need to know where this value is stored and if this is not the date which is supposed to be displayed in the Due Date column then how to set Due Date pro grammatically.
Please help.