Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X
I have used following in transition without issues.
java.lang.Exception e = new Exception("Please make sure the XYZ is checked in before completing task");
if(wt.vc.wip.WorkInProgressHelper.isCheckedOut((wt.vc.wip.Workable)primaryBusinessObject)){
result=false;
throw new wt.workflow.engine.FailedTransitionException(e);
}
