Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
Hi
Can anyone provide java code to complete wt.workflow.work.WorkItem. And how can i get primaryBusinessObject from WorkItem?
Thanks.
you can use this code to get the PBO
PersistentReference persistance = workItem.getPrimaryBusinessObject();
Object object = persistance.getObject();
if (object != null)
{
return object ;
}
return null;
