Question
API to create Plan under Product Context
Version: Windchill 12.1
Use Case: Create Plan under product context
Description:
Hello,
I need to create Plan under product, I have tried below code but still Plan is not getting created. can someone have idea how to create Plan from code -
public static Plan createPlan(WTContainer container) throws WTException {
Plan plan = Plan.newPlan(container.getContainerReference());
PlanHelper.service.createPlan(plan);
return plan;
}
Thanks,
Vedant

