Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
Get Due date of workflow
SathyaC
Hi,
I am trying to get the Due date of the workflow in one my external tasks which is having CSWorkflow object.
Is it possible to get Due date by using CSWorkflow object or need to convert it to WFMWorkflow object?
And how to convert CSWorkflow object to WFMWorkflow object?
Thanks
Find more posts tagged with
Comments
Rick Poulin
It's nothing more than a reserved variable on the job.
[PHP]
Date dueDate = new Date(1000*Long.valueOf(csworkflow.getVariable("due_date")));
[/PHP]
Note: you'll probably have to adjust for time zone.
SathyaC
thanks poulin