Quantcast
Channel: PTC Community: Message List - Windchill
Viewing all 8876 articles
Browse latest View live

Re: Apply latest life cycle template iteration

$
0
0

I realized this was posted a while back but,

 

I had the same issue - 0 results until I added the Optional attribute :includeSubType=true

 

This tool care of my problem and when I ran it again instead of 0 wtPart object it updated 95 000 object

 

Hope this helps


Re: Overview on Windchill Product Analytics

$
0
0

Good day Aditya - you should be able to access the Group now :-)

Best,

Toby

QuerySpec for DB query

$
0
0

Hi,

 

I need to create QuerySpec using given database query below is there any way I can covert below command to queryspec

 

select pm.name as PartName, pm.WTPARTNUMBER as PARTNUMBER, pr.NAMECONTAINERINFO as PRODUCTNAME from wtpart p, WTPARTMASTER pm, PDMLINKPRODUCT pr

where p.IDA3MASTERREFERENCE = pm.ida2a2 and p.IDA3CONTAINERREFERENCE = pr.ida2a2 and pr.NAMECONTAINERINFO = 'Test';

Only Pro/Engineer Authored CAD Documents are valid for export.

$
0
0

I am trying to export files that were non native , that is a visio drawing .vsd, and a Microsoft Word document .docx. These were imported ok into my Windchill PDM Link.10.2 workspace as dynamic documents, but I cannot export them. I get the error shown in the topic title.

Has anyone encountered this and have a workaround?

Thanks

Re: Advice for Windchill test/production SQL database setup

$
0
0

Thanks for feedback Bob, very insightful.  We intend to use full PLM Capabilities and will have about 100 active users.

Re: Overview on Windchill Product Analytics

$
0
0

Thanks Toby.

 

Best Regards,

Aditya

Re: Advice for Windchill test/production SQL database setup

$
0
0

No problem, Anthony.

 

We'd be happy to help in any stages of the implementation, whether it be the technical, systemic implementation or, after installation, the use of and adoption by the business through optimal setup of the Windchill business elements (ACLs, OIRs, object types, contexts, teams, life cycles, workflows, modules, etc).

 

Feel free to contact me directly via e-mail if you are ever interested in some assistance with your implementation.

Re: Only Pro/Engineer Authored CAD Documents are valid for export.

$
0
0

Out of curiosity, why where the .vsd and .docx files imported as Dynamic Documents instead of being stored as a WTDocument object type?

 

One option you have is that you can track the specific objects in the database to their "ApplicationData" record in the DB, which will point to an identifying number that, when translated to hexadecimal format, will match the vault file (assuming this data is vaulted).  Also assuming you have access to the file vault directly, you could then copy that file directly from the vault and rename it with the proper extension and then you should be able to open it in its native application.


Re: Out of Date Check - how does it work?

$
0
0

I also tried this preference and functionality but I have to say that it doesn't work.

Re: Only Pro/Engineer Authored CAD Documents are valid for export.

$
0
0

Hi Bob

there really wasnt an option to choose any other object type when the file was imported.

Re: Only Pro/Engineer Authored CAD Documents are valid for export.

$
0
0

Hmmm - I ask because the WTDocument type can very easily store these object types, and doesn't require a WGM to use - it is simple download/upload, check-out/check-in functionality.

 

I'm also curious as to what options were presented to you for the import, as there are definitely ways to "bulk load" WTDocuments with content files.  One way would be as a "mini-migration", loading everything using the LoadFromFile framework from the Windchill server itself.  You can specify where they exist, what version they are at, any other attributes/IBAs associated, etc.

 

Is this a wide-spread issue with these types of objects stored as Dynamic Documents?  Or is this only pertaining to a handful of files?  Was this an import done by a third-party?  Was there a specific requirement that forced the use of Dynamic Documents?

Re: How do I construct the link to an assigned workflow task?

$
0
0

Randy, I'm glad you found a "solution to your earlier question".  Would you be so kind as to share how you did it?  I see that you created an expression to set a variable prior to the email notification, but what is the URL link?  How do you get it?  I cannot figure out how to get the WorkItem #.

 

thanks, Clay

Re: I have modified OIR of an object but it is not reflecting

$
0
0

Hi Madhu,

 

I have entered over fifty numbering sequences into the database and successfully associated OIRs with all of them. Could you be more specific about what your process was/is, and I'll see if I can help.

 

Regards        Doug

Query Builder: Move

$
0
0

Hi All,

 

I've been searching around but haven't been able to find anything on reporting on Move's in Windchill.

 

 

Would anyone be able to help me with a couple of questions:

 

- What table is the move history of an object stored in in the Query Builder?

 

- What is the correct way to join this table to the EPM Document to get a move history as well as the times of the moves?

 

 

Any help would be greatly appreciated!

 

Many thanks,

How do I give a user temporary access?

$
0
0

If I want to give an external company and its users temporary access to our Windchill data (5-6 months) how would i go about doing that.  Can I create a schedule to deactivate them?  I'd like to avoid having to put an item in my calendar and make it more automatic.


Re: How do I give a user temporary access?

$
0
0

Use ProjectLink to allow them access to what data you want to share with them.

 

Well, if you don't know a specific cutoff time (5-6 months) then scheduling a date for cutoff is hard.

 

You could also use a VPN into your system and let them directly into PDMLink.

Never Built : Error With Wt Part Structure.

$
0
0

We have an assembly say xyz.asm who's part Structure shows excluded. (Information Page of CAD Assembly --> Action --> Compare Part Structure --> On Wt Part Structure window all part shows Exclude)

 

When I compare its CAD Structure (Information page of WT Part xyz.asm --> Action --> Compare CAD Structure --> Never Built: The Part and CAD Document have been never Built. The Build CAD Structure action will update the existing CAD Document use and CAD Document to have the same attributes as the parts.

 

How do I resolve this Issue?

 

 

Thanks & Regards

 

Kshitiz

Re: QuerySpec for DB query

$
0
0

This does pretty much everything except setting the AS, and only returning 3 columns. You should be able to figure out the rest by checking out the QuerySpec section in the Windchill Customization guide (or whatever it is called these days).

 

The spec looks like this when you do .toString()

 

SELECT A0.*,A1.*,A2.* FROM wt.part.WTPart A0,wt.part.WTPartMaster A1,wt.pdmlink.PDMLinkProduct A2 WHERE (A0.idA3masterReference = A1.idA2A2) AND (A0.idA3containerReference = A2.idA2A2) AND (A2.namecontainerInfo = 'QA2')

 

         QuerySpec spec = new QuerySpec();

       

        int partIndex = spec.addClassList(WTPart.class, true);

        int partMasterIndex = spec.addClassList(WTPartMaster.class, true);

        int productIndex = spec.addClassList(PDMLinkProduct.class, true);

       

        ClassAttribute ida3MasterReference = new ClassAttribute(WTPart.class, WTPart.MASTER_REFERENCE + "." + WTAttributeNameIfc.REF_OBJECT_ID);

        ClassAttribute masterIda2a2 = new ClassAttribute(WTPartMaster.class, WTAttributeNameIfc.ID_NAME);

        ClassAttribute productIda2a2 = new ClassAttribute(PDMLinkProduct.class, WTAttributeNameIfc.ID_NAME);

        ClassAttribute partIda3ContainerRef = new ClassAttribute(WTPart.class, WTPart.CONTAINER_REFERENCE + "." + WTAttributeNameIfc.REF_OBJECT_ID);

       

        SearchCondition masterJoin = new SearchCondition(ida3MasterReference, SearchCondition.EQUAL, masterIda2a2);

        SearchCondition containerJoin = new SearchCondition(partIda3ContainerRef, SearchCondition.EQUAL, productIda2a2);

        SearchCondition containerName = new SearchCondition(PDMLinkProduct.class, PDMLinkProduct.NAME, SearchCondition.EQUAL, "Test");

   

        spec.appendWhere(masterJoin, new int[]{wtpartIndex, wtpartMasterIndex});

        spec.appendAnd();

        spec.appendWhere(containerJoin, new int[]{partIndex,productIndex});

        spec.appendAnd();

        spec.appendWhere(containerName, new int[]{productIndex});

       

        System.out.println(spec.toString());

Where can I find instruction about how to create Modeled Attributes?

$
0
0

 

We are trying to link a part to a document instead of typing the part number; we would like to a create a modeled attribute to use a “picker.” We just do not know how to do it. I can’t find any instructions about how to create a modeled attribute. All I have found on modeled attributes is this: “Modeled attributes are programmed in Java and cannot be created using the Type and Attribute Management tool”

 

We would like to know what we need to do it and how we do it.

 

Thanks!

Capture.JPG

Running WC 11.0 M020-CPS03 - Can anyone tell me which components of Windchill still require Java?

$
0
0

I realize that we are supposed to be at Java 8 Update 76 or above,  But I would like to know what parts of Windchill still use Java and what happens if the Java version isn't at Java 8 Update 76.

 

Please Advise

Viewing all 8876 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>