How to handle master object creation while creating multiple versions of an object
I have a scenario,
consider I am creating the following objects using Windchill Custom API loader.
EPMDocument -
xyz.prt, versions A.1,B.1,C.1
WTPart -
abc, versions A.1,B.1,C.1
I use the below static methods to initialize the objects.
EPMDocument.newEPMDocument(docNumber, docName, authoringApp, docType, cadName) for epmdocument
WTPart.newWTPart(number,name) for wtpart
My question:
First, when A.1 instance is created, i believe the API also creates its master object in the background.
What happens when i move to B.1 creation, with same API code?
will it attempt re-creation of master object (or)override existing master object during B.1 and C.1?

