Change part number by code
Hi
Can anybody provide java code example for part (WTPart) number change?
Thanks.
Hi
Can anybody provide java code example for part (WTPart) number change?
Thanks.
Hi,
Try this,
I am not sure which of them will work.
WTPartMaster wpm = (WTPartMaster) part.getMaster();
WTPartMasterIdentity masterIdentity = (WTPartMasterIdentity) wpm.getIdentificationObject();
masterIdentity.setNumber("new number");
masterIdentity.setName("new name");
IdentityHelper.service.changeIdentity(wpm, masterIdentity);
WTPartMaster master = part.getMaster();
<Use the setter methods to change values >
<save the master using PersistenceHelper>
PersistenceHelper.manager.save(master);
WTPartHelper.service.changeWTPartMasterIdentity(part.getMaster(), name, number, localWTOrganization);
Thanks and Regards,
Kaushik
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.