Community Tip - Learn all about the Community Ranking System, a fun gamification element of the PTC Community. 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);
}
