Includes: Windchill API, Windchill REST Services, Info*Engine, UI Customization
Recently active
Need to pull a few reports containing the number of files of each type .dwg .asm .gp4 for example... and the amount of space these files/total of each type currently consume. Trying to plan for integration of other data from acquisitions and future expansion and need these numbers and info to calculate this...running under Windchill 10.2 M040.Thanks!Tim
Please make com.ptc.core.richtext.HTMLText type available for use in user defined attributes in PDMLink, version 10 onward.
package ext.training;import ext.generic.util.IBAUtility;import wt.fc.PersistenceHelper;import wt.fc.QueryResult;import wt.projmgmt.admin.Project2;import wt.query.QueryException;import wt.query.QuerySpec;public class ModifyProjectAtt { public static void modifyPrtAtt() throws Exception{ try { QuerySpec qs = new QuerySpec(Project2.class); QueryResult rs = PersistenceHelper.manager.find(qs); while (rs.hasMoreElements()) { Project2 proj= (Project2) rs.nextElement(); IBAUtility iba = new IBAUtility(proj); String prdType = iba.getIBAValue("PRODUCTDEVELOPTYPE");//產品種類 if(prdType == null || prdType.trim().equals("")){} else{ if(prdType.indexOf("類")>-1){ }else{ String corType = prdType+"類"; iba.setIBAValue("PRODUCTDEVELOPTYPE", corType);//設定新的Type名稱 iba.updateAttributeContainer(proj);//更新project iba.updateIBAHolder(proj); } } } } catch (QueryException e) { // TO
Currently, when you delegate your tasks for a specific period of time and there are any tasks that were not completed within that timeframe, they sit until the delegate completes them or reassigns them back to the original owner.It would be nice if the system would automatically switch the uncompleted task(s) back to the original owner upon their return and the end of the specified timeframe.
- In Mentor Graphics xDxDesigner and xPCB Layout we have concurrent designing functionality which allows multiple users to work on the design simultaneously. However the Windchill Workgroup Manager for ECAD which is integrated with Mentor Graphics does not support concurrent designing. Only one user is allowed to check out and work on the design which does not meet the real world scenario. WGM with support for concurrent designing would be of real benefit as it improves productivity and would meet the needs of the ECAD engineers.
Hi Experts,I need to fetch the childNodes in classification. Is there any API to get childNodes in classification?Thanks in Advance.
Hello,is there a way to make a part's attributes not to be editable in release state, but the "Described by Documents" to be still editable?The desired scenario is: the part goes through the release process and will be locked for modifying with one exception: in the table "Described By Documents" the user with a specific role should be able to add Released documents. The "modify" ACL is not good in this case because it will give attribute edit permission also. Is there a way in Java code to bypass the ACL?BR,Tamás
I think is usefull if when compare a CAD structure with a WTPart Structure show the visualizaer tab, like when you compare two WT_Parts sctructure.In this example is when compare two WT_Parts:
can we add additional columns of our attributes in the product structure explorer of MPMlink to edit bill of material.?
Hi all,I want to generate custom activities from Windchill tasks page(For Windchill 10.2 M030). I'm new to customization. Please provide your valuable ideas.Regards,Chaitanya
Is there anyone who has an example of code or webject to create an MBOM from an EBOM or a part?Thanks,/Gustav
I need to fix the column size {Ex :- i have part number / description / reference number , based on the content or some constant space(column size) }
Hi All,Is any API to create link between .prt and it's drawing in Windchill.i have tried EPMBuildrule type of link, but it creates structure links.is any one has tried to create link between .prt or .asm to it's respective drawing throgh Windchill API ?Any help will be grate.Thanks,Vivek
Hello, I need to get all WTParts, that contains in Windchill for one special report. How can I do it?Thanks.
Hi, sorry for my english.I want to know if is possible to force the user so he/she can not Complete a Task (launch by a Workflow) unless a document is uploaded (Ckeck in) in Windchill.Thank you in advance for your help!!
Hi,I'm trying to implement a new client view on the part info page. I am happy to know that there is a list of ComponentConfig (see e.g page 260 of PTC Windchill Customization Guide for 11.0F000). Some of them:TableConfigAttributesTableConfigTreeConfigAttributePanelConfig...Does someone know where to find a description or screenshots of the result while using each object ?A description of the hierarchies of the component would also help me a lot : what component could be added (or not) to a component.From the class names, I could implement a prototype with GroupConfig and AttributeConfig. Something like following :The javadoc could not help me so much, and I cannot seriously experiment everything....Best Regards,Loïc
Hi I need information about how can I launch a workflow from a JSP file.Thanks
We put a comment in at check in when we change from the prototype numbering scheme to the released numbering scheme so we can see through History what the old number was. This does not help if all you know is the old number and need to find the new number. How can we search for Comments in previous revisions in Windchill PDMLink?
Hello,Any ideas how I can change the autogenerated algorithm for the Part object Windchill 10 to assign a number between 6AAB00001-6AAB999999 or to set the prefix to 6AAB if that is possible.
Hello,I'm trying to get the wwgm toolkit to work. I compiled the "hello world" example.I'm compiling this with "microsoft visual C++ 2010 Express" and the build is successfull.The customizationTK.xml file is also ready with this line in it. <customization name="testtoolkit" path="C:\PTC\wgm\test2\toolkittest\WWGMTK_PROJECT_NAME.dll"/> Then I start our workgroup manager and I get following error: <Failed to load testtoolkit DLL from : C:\PTC\wgm\test2\toolkittest\WWGMTK_PROJECT_NAME.dll.>I'm not able to solve this problem. Does somebody know what I am doing wrong?Thanks in advance
Hi Guys,I am using Windchill 10.2 and want to implement attribute inter dependency functionality like on selecting country value relevant states should auto populate. Can it be possible through configuration in Windchill 10.2? It can be done using datautility and ajax in Windchill 10.1. Please share the sample code if any.Thanks for your help !
In New Change Notice window Template drop down values should be sorted in alphabetical order
I have a OOTB system on which i am trying to create a JAX-WS webservice, using the OOTB PTC provided example. However when i try to generate Client executable jar file i get this errorServer returned HTTP response code: 401 for URL: http://xyz.com/Windchill/servlet/xyzService?wsdl. Now with reference to PTC case number CS157645 https://support.ptc.com/appserver/cs/view/solution.jsp?n=CS157645&art_lang=en&posno=1&q=java.io.IOException%3A%20Server%…I followed all the steps, but still i am getting the same error. Has anyone ever faced this issue with JAX-WS.
Hi All,I am trying to create a Link between WTPart and EPMDocument objects by using below code,it's executed without error but it not create any kind of link in between these two objects.is any one tried to create Link between WTPart and EPMDoc.Please review below code and suggest the correct way to create this type of links.======================System.out.println("Getting the epmdocument"); EPMDocument source = getEPMDocument(); //getEPMDocument method returns me object of EPMDoc type System.out.println("Getting the WTPart"); WTPart target = getWTPart(); // getWTpart method returns me object of WTPart type System.out.println("Creating the link between wtpart and epmdocument"); int buildType = 1; source = (EPMDocument) WorkInProgressHelper.service.checkout(source,WorkInProgressHelper.service.getCheckoutFolder(),"").getWorkingCopy(); EPMBuildRule link = EPMBuildRule.newEPMBuildRule(source, target); PersistenceServerHelper.manager.insert(link); System.out.println("Link has been created"
Hello,Does anyone know if it possible to set a workflow timer robot to omit weekends and holidays?We have an external process that happens within one business day. We'd like to set a timer to advance the workflow to the next task after a business day.I have a slight recollection of some wt.properties to specify the working days to update the Site calendar. Are workflows looking at the Site calendar to determine 'work days'?
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.