cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X

Create new view versions in mass?

avillanueva
22-Sapphire I

Create new view versions in mass?

Anyone know a method? I can load parts in. I can revise from workspace ok. Can't seem to find a way to mass create new view versions on a set of parts.

Antonio Villanueva - Gen Engrg Mgr, CM - ISR Systems
UTC AEROSPACE SYSTEMS
100 Wooster Heights Road, Danbury, CT 06804
Tel: +1 203 797 5682
antonio.villanueva@utas.utc.com<">mailto:antonio.villanueva@utas.utc.com> www.utcaerospacesystems.com
CONFIDENTIALITY WARNING: This message may contain proprietary and/or privileged information of UTC Aerospace Systems and its affiliated companies. If you are not the intended recipient please 1) do not disclose, copy, distribute or use this message or its contents, 2) advise the sender by return e-mail, and 3) delete all copies (including all attachments) from your computer. Your cooperation is greatly appreciated.

6 REPLIES 6

As a load file?
Or okay to code?

On Tue, Mar 17, 2015 at 12:35 PM, Villanueva, Antonio UTAS <
-> wrote:

> Anyone know a method? I can load parts in. I can revise from workspace
> ok. Can’t seem to find a way to mass create new view versions on a set of
> parts.
>
>
>
> *Antonio Villanueva *– Gen Engrg Mgr, CM – ISR Systems
>
> *UTC AEROSPACE SYSTEMS*
>
> 100 Wooster Heights Road, Danbury, CT 06804
>
> *Tel: *+1 203 797 5682
>
> *antonio.villanueva@utas.utc.com <antonio.villanueva@utas.utc.com>
> www.utcaerospacesystems.com <*">http://www.utcaerospacesystems.com>*
>
> CONFIDENTIALITY WARNING: This message may contain proprietary and/or
> privileged information of UTC Aerospace Systems and its affiliated
> companies. If you are not the intended recipient please 1) do not disclose,
> copy, distribute or use this message or its contents, 2) advise the sender
> by return e-mail, and 3) delete all copies (including all attachments) from
> your computer. Your cooperation is greatly appreciated.
>
>
>

Antonio,

If you are using 10.2 F000 or higher you can do it via Import from Excel. I am attaching an example – notice the Predecessor Revision and Predecessor View columns on the Parts-Mfg-View tab

While we are sharing, this is how you add security labels user the same import method.

In case if someone using MPMLink for BOM transformation then spreadsheet capability will not create equivalent link between upstream and downstream BOM I think.

Regards,
Shakil

Thanks Jeff and all, I wrote a client program this morning to create them from a list of part numbers:
//load data file
BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(args[0])));

String number;
boolean readNumber=false;
while((number = br.readLine()) != null)
{
prj.logger.debug("Read number:" + number);
try {
WTPart part=prj.getPart(number);
if (part == null) {
} else {
WTPart engView=(WTPart)ViewHelper.service.newBranchForView(part, "Engineering");
PersistenceHelper.manager.save(engView);
}
}
catch (WTException e)
{
prj.logger.error("Error creating new view for" + number, e);
}
}

Shakil,

There is no equivalence link between the view version itself even with MPMLink, that is between Part 123 Rev A Design and Part 123 Rev B Mfg. Its when you do a transformation that an equivalence link is used.
Top Tags