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
Hi all
I want to create WTPart Parent and Child to it in stuctured way using java code with Oracle sequence as Number.
Hi Guru,
I dont know the exact way.But you may try this
WTPart workingCopy;
WTPart part = WTPart.newWTPart("myPartNumber", "MyPartName");
part.setContainer(c.getContainer());
PersistenceHelper.
manager.save(part);
WTPart childPart = WTPart.newWTPart("myChildPartNumber", "MyChildPartName");
childPart.setContainer(c.getContainer());
PersistenceHelper.
manager.save(childPart);
workingCopy = (WTPart)WorkInProgressHelper.
service.checkout(part, WorkInProgressHelper.service.getCheckoutFolder(), null).getWorkingCopy();WTPartUsageLink link = WTPartUsageLink.newWTPartUsageLink(workingCopy, (WTPartMaster) childPart.getMaster());
Persistable per2 = PersistenceHelper.
manager.save(link);WorkInProgressHelper.
service.checkin(workingCopy,null);