Includes: Windchill API, Windchill REST Services, Info*Engine, UI Customization
Recently active
As of now date and time are displayed and the attribute data type is date and time, Here I need to separate date as one column and time as 2nd column. Is this possible?
Hello, I have cognos integrated with windchill. I am generating report through it. I want to add filter to some of the column in report. How can I achieve this? Also , please help me to get customization guide to customize cognos in windchill. Thanks you.
I've been asked to look into a query builder report that shows all of the superseded parts in the system. Does anyone have a QML report that shows anything like that I could get started with?
Hi everyone, I want to create a "shortcut" for a manual representation creation for an EPM document. The idea is to have preconfigured publish options and assign an action to do the actual call to the publisher. I have a PublishRules.xml uploaded to the Site --> utilities --> Visualisation Configuration Administration. Because of the rules in this xml I have a dropdown combo (Output Options) on the "Chose Structure Type" step of the New representation wizard. The default value is "All" but if I select for example PDF it will start only one Publish job with the param-set selected. Now if I want to call from an action the Publisher.doPublish(...) API as I read I have to use the PublisherAction to define the "Output Options". This is the code that I'm using, but it will trigger the publisher like if I would left "All" in the combo (4 publish jobs will be created): Publisher pub = new Publisher(); ReferenceFactory ref = new ReferenceFactory(); Pu
Hello everyone, I've developed a Listener that "listen" for a WorkInProgressServiceEvent.POST_CHECKIN and create a BOM files using some rules. All works fine except that WorkInProgressServiceEvent/POST_CHECKIN seems not to be trigerred on the very first checkin of a "new/only uploaded" EPMDoc. I wondered if this is a known issue or there is a workaround. Thank you
In what SQL table is the custom meta stored. For example, we have custom Objects types & attributes. I'd like to query the SQL database but I don't know in what table this information is stored? Any ideas?
Is there any way, hopefully a simple way, to reorganize the order in which things show on the Details page of a CN? For example, I would like to move the Associated Reference Objects from the bottom to just after the Attributes.
Hi fellow devs, do you know how I could customize the advanced search functionality to list the results based on a ConfigSpec, or something similar. Considering I have multiple Released states (Signed, Effective), I want to show the results in this order: Effective or Signed or In Work. The bold versions should be listed in the resulting table: 0001.A.1 -> Released 0001.B.1-> InWork 0002.A.1->Obsolete 0002.B.1-> Signed 0002.C.1-> InWork 0003.A.1-> InWork 0004.A.1->Effective
I am looking for tool to export ACL from Policy Administrator in excel format.The exported file can be edited and then has to be imported back to Windchill system.The Windchill system should show the changes made in ACL.
Hello, I have a EPMDocument i.e abc.drw . Their is a calculated association link between epm and wtpart. What is the API to get wtpart from that epm .
Hello, We have checked the ptc documentation on part Instance, but it not sufficient to understand. What is the business use of Part Instance? If you can help with any example , it will be great help. Most importantly why to create Part Instance? Thank you.
I need to check the CN summary of over 200 CNs. Is it possible to pull multiple CN summary at once or is there any customization possible for this. Thanks!!
Hi, Has anyone faced issues like Windchill being slow for certain functions (Version 10.2 M022) only in non English browsers? We have few users who use PCs with languages other than English as their default language and this specifc group of users alone face slowness often. Any clue? Regards, Amar Karthi ARASAN
Hi all I would like to know about the use of Windchill Info Modeler, Can anyone share any article or documentation on this. Is it possible to integrate Windchill with other downstream applications using InfoModeler. Thanks Chaithra Sree
Hi All, OOTB "Move" action is disabled in Project context. this action is hidden by "wt.dataops.conatinermove.processors.MoveValidator" . is any way to make it visible in projectlink context. Regards, Vivek
Hey all, I am trying to write a java code in order to create a new custom filter to view product structure browser. I am new to windchill customisation and any suggestion or help will be really appreciated. Thanks, Suthakar
Hi, I need to trigger a windchill workflow from Thingworx. I think it's right way to expose this function through OData rest service in windchill. The logic of WRS function is implemented by Javascript, which I don't understand and don't know where to find the document of API, I have no idea of how to implement my logic. Please help. Below is sample code from Windchill Rest Service User Guide. function function_GetCostlyParts(data, params) { var ArrayList = Java.type('java.util.ArrayList'); var EntityCollection = Java.type('org.apache.olingo.commons.api.data.EntityCollection'); var parts = data.getProcessor().readEntitySetData(data); var partEntityMap = data.getProcessor().toEntities(parts, data); var partEntities = new ArrayList(partEntityMap.values()); var entityCollection = new EntityCollection(); for(var i = 0; i < partEntities.size(); i++) { var partEntity = partEntities.get(i); var partCostProperty = partEntity.getPropert
I created a local/standard attribute of type string. I'm trying fetch it's value through query spec but getting the following error: 2019-04-16 20:53:05,092 INFO [ajp-nio-127.0.0.1-8011-exec-5] wt.system.err pjai12 - wt.query.QueryException: Attribute "ptc_str_89typeInfoLCSProduct" is not a member of class "class com.lcs.wc.product.LCSSKU"2019-04-16 20:53:05,092 INFO [ajp-nio-127.0.0.1-8011-exec-5] wt.system.err pjai12 - Nested exception is: Attribute "ptc_str_89typeInfoLCSProduct" is not a member of class "class com.lcs.wc.produ Here is my code: String sampleSizeTestNoColumnName = ((product.getFlexType()) .getAttribute(ConverseConstants.SAMPLE_SIZE_FIT_SIZE_NUMBER)).getColumnName(); QuerySpec qs = new QuerySpec(); int classIndex = qs.appendClassList(com.lcs.wc.product.LCSSKU.class, false); ClassAttribute ca = new ClassAttribute( com.lcs.wc.product.LCSSKU.class, sampleSizeTestNoColumnName); qs.appendSelect(ca, new int[] { classIndex }, false); QueryResult qr = PersistenceHelp
Hi there, here is my need: - first I want to automaticaly publish CAD documents once they move to the Prototype State. I also have to create a step file. I had a publish Rules for that and it works fine. - then, I need to post-publish the representation "on demand" for Creo Illustrate. I have a standard publish rules for that, who works when this file is alone. now I want to merge the 2 rules files. All my tries were not good: or I can create only one representation of the 2 rules, or I publish everything together. I guess is a syntax issue, but I don't understand. does someone have already done this exercise? thanks in advance Ron
Hello, I have created a Part Configuration. Now I want API to get structure of Part Configuration. I tried ConfigurationHelper.service.getNormal(partConfig); this gives me Structure but not in proper order . So I want as it is BOM structure. How can I get this?
Experts, I am trying to write a validator on Move action, I tried to write a simple validator which extends wt.dataops.containermove.processors.MoveValidator, Registered my custom validator in service.properties as: wt.services/svc/default/com.ptc.core.ui.validation.UIComponentValidator/CONTAINERMOVE/null/0=ext.company.validators.CompanyMoveValidator/duplicate When I do a jcaDebug in UI, the move action shows the name of my Custom Validator, But it doesn't process any code in "validateFormSubmission" method when I click finish on Move action in UI. Can you help in what I may be missing here? Abhishek
Is there a way to load batch(multiple) of attributes in XMLs(layout) or directly to Type & Attribute management?
In Structure Tab can not find uses tab. This happen only in case of Part Configuration. So how to add uses tab under Structure tab.
Hello, I have Parent and child object , I want to display them in Table in tree format. Example in customization guide is not clear. Any simple example or document? Below image shows the output which I want to implement through MVC Table builder.
Hello, When I create a Part Configuration of a part, the view is copied as it is. Default view is Design. So I want to change the design view to something else , let's say manufacturing view. So how do it? Any of the way is acceptable , Either by GUI or by customization.
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.