Windchill
Recently active
I am using Windchill PDMLink Release 11.0 and Datecode with CPS M030-CPS11After installation, unable to view or edit the lifecycle or workflow templates.
If I would change a WT Part in BOM, do I need to update all the Drawings inwhich is inside the item?Do I need to update all the BOM in the Drawing or Winchill recover it? version CREO9 and WindchillBest regardsDino
I am trying to add the WTPart into the Workspace for WGM i am unable to get the api for WTPart articel : CS40907(for EPM)I found the article for EPM document. How to add the WTPart to workspace
Hi All,I can get all epmdocument which are linked with WTPart by following code:Here "part" is variable.QueryResult qr2 = WTPartHelper.service.getDescribedByDocuments(part);But, Is there any way to get WTPart from its EPMDocument?. If possible, please provide sample code.RegardsSaravanan
I am building a very simple edit wizard with an attributes table. Above this table, I want to have a dropdown list of possible role values. I have a data utility that can populate the values. Because this value is an input for the attributes table and its generation, when the data utility changes, the attributes table should refresh to pull the data related to this role. One thing I am unclear on is how to trigger the table to regenerate when the drop down value is changed. A non-simple example I can think of is the document create wizard when you change the soft-type, the lower section is refreshed.
I can't create a new model or open an exusting model the steps I followed are:1- launch the modeler2- press on the new midel icon But a message appeared " There are no running repositories mapped "So anyone has an idea what is the reason for this message Thanks in advance.
In this example, customer wants to output ”Iteration“:1,like the ”Revision“ But seems attribute "Iteration" is not in Parts.json, is it possible to output "Iteration"? Thanks,Eva
I'm following the instructions in https://www.ptc.com/en/support/article/CS332539 to try to determinethe version of windchill workgroup manager installed and so far I can't locate the wwgm install folder orget to the About Windchill Workgroup Manager, any ideas as to what I'm doing wrong ?
I am using Windchill PDMLink Release 11.0 and Datecode with CPS M030-CPS14We're attempting to update Alternate usernames in our dev environment by using an infoengine task detailed in CS233456. It appears that case is not updating bulk users but a specific user. I was looking for a way to update multiple users. I created an infoengine group of WTUsers (small subset of all users) and tried using the foreach tag to parse through those users to update their alt username but that hasn't worked. I may be missing something and was wondering if there's anyone that could help with.
I am using Windchill PDMLink Release 11.1 and Datecode with CPS M020-CPS23Hey,We have finished the WinDu report and are going to run the WinRu. Before running the WinRu and WCTK FTHealer as per suggested, should we have our Creo users upload/check in any Creo files to Windchill to avoid data loss?
Team Windchill does not officially work with Postgressql but there are a few teasing files: $ find . -name \*ostgres\* ./codebase/wt/manager/CacheMasterNegotiator$DataStoreType$PostgresDST$PostgresLockAttemptContext.class ./codebase/wt/manager/CacheMasterNegotiator$DataStoreType$PostgresDST.class./srclib/postgresqljdbc41.jar ./srclib/postgresqljdbc41.jar Why are these files in Windchill, and how can they be used?
I need to use the attribute "Default Unit" - Internal Name (defaultunit), however, the legal value list is "ea|as_needed|kg|m|l|sq_m|cu_m" and for value "ea" . I want have a value in fraction which is currently not possible .is there any way have fraction value for value "ea" Or how can I add additional value as "special each" for which I will add the fraction unit values ?
What will be a performance impact for Windchill 12.1.2.X version when installed with OS Linux versus OS used as Windows compatible server ?
Windchill object is checked-in to the Windchill but not to the default container instead somehow check-in to the site level folder and the folder points to the workspace which user use at present. (Note: User performed the check-in form that workspace) The site level folder (note: the name of the folder will be same as user current workspace) is not accessible directly from the site>folders. The folder can only be access by searching the object in Windchill and accessing the folder through the Breadcrumbs. Because of this the object is only visible to the specific user who check-in and ADMINISTRATOR and other end user cannot see the object since it is still in his own workspace folder at site level.(Note: The object won't be available when we access the workspace from browser UI as mentioned above it is only accessible by searching the object directly in browser and selecting the folder in Breadcrumbs)I need to know how this happen and how to reproduce the issue. The
Dear SMEs, Can anyone please help me where I can download reloadclipse jar to reload java files in eclipse?I am unable to search it on google.
Hello,We've been using AEM to generate the cover page of WTDocuments for Windchill 12.0_2_7, as per typical usage.While trying to keep the customization at a minimum, we're trying to modify the configuration files (xconf, java, and tpl) to create the Primary Content for a newly created WTDocument custom subtype. I have two questions on the subject:1. I see in the template.properties.xconf that it is possible to define that generators and templates are used based on the document type (for example com.ptc.coversheet.DOCX.template), but is it possible to define a "hook" based on the document type?2. Will the cover page algorithm even trigger if the new WTDocument has no content when created? Let me know if there's anything I can clarify!
In Siemens 3DCAD NX, It has the ability to place drawings directly into files containing 3D model geometry.Can the Windchill Viewer Adapter convert the file?If so, how will it be displayed in CreoView?
I am doing the save as for the EPMDocument while doing save it is giving some error. iam able to get the owner application but iam not able to set the owner application for newly saveas [error is"The value of "Owner Application" cannot be set to null, since it is a "required" attribute."] private EPMDocument saveAsCADAssembly(EPMDocument emptyCADAssembly, String name) throws WTException {try {System.out.println("While Save as partName: " + name); // Get the owner application from the original CAD assemblyEPMApplicationType ownerAppl = emptyCADAssembly.getOwnerApplication();System.out.println("Owner Application: " + ownerAppl.toString()); RevisionControlled[] originals = new RevisionControlled[1];CopyObjectInfo[] copyInfoArray = null; originals[0] = emptyCADAssembly; copyInfoArray = EnterpriseHelper.service.newMultiObjectCopy(originals);EPMDocument copy = (EPMDocument) copyInfoArray[0].getCopy(); // Set the owner application for the newly saved copycop
Here i am trying to fetch the latest cad drawing from the part, i am getting cad but not the latest . while (drawingQR.hasMoreElements()) {System.out.println("Entering into the Drawing Loop");EPMBuildRule link = (EPMBuildRule) drawingQR.nextElement();Persistable epmP = link.getRoleAObject();System.out.println("epmP: " + epmP);if (epmP instanceof EPMDocument) {epmDoc = (EPMDocument) epmP;wt.epm.EPMDocConfigSpec epmConfigSpec = wt.epm.EPMDocConfigSpec.newEPMDocConfigSpec();epmConfigSpec.setLatestActive();epmConfigSpec.setWorkingIncluded(false);System.out.println("epmDoc: " + epmDoc.getName() + " ---" + epmDoc.getNumber()); // Navigate to find references to this latest drawingQueryResult referenceQR = PersistenceHelper.manager.navigate(latestDrawing.getMaster(), "referencedBy", EPMReferenceLink.class, false);if (referenceQR.hasMoreElements()) {EPMReferenceLink referenceLink = (EPMReferenceLink) referenceQR.nextElement();drawing = (EPMDocument) referenceLink.getReferencedBy
--> Change the symbol for the "out of date" clocksHello, I have 2 questions about the clocks that are responsible for the various "out of date" notices.1.) Is it possible to assign a different symbol to the clock (triangle, dot, square)?2.) Is it possible to use a different symbol for all 3 possible clocks (Out of date, Out of date with Workspaceconfiguration & General Status)? Or do these attributes all use the same symbol template? ThanksHeiko
Hello All, Is it possible to integrate Plant3D with Windchill?If yes, what is the procedure to integrate? Do we need a start up script? Kind regardsPranav
Grayed out below OOTB four action buttons when WTPart type object NOT having "Resulting Change Exists" indicator.OOTB Action buttons to be grayed out :1)Check Out2)Check Out and Edit3)Edit4)Edit Common Attributes. Which is best way to Grayed out OOTB action buttons:1)Filters2)Validators
Good dayI'm new to Windchill and I'd like to ask a question:How I can export the data of what permissions the members of the product library have? For example, member A has the permission to create new parts. salute
Hi, When i do compare to part structure to an assembly, i see there are some CAD and part with warning saying that they were never build. when i try to build them up, it is showing an error. see attachment. could you please help on this? Br,sandy
Hi Guys,I want to know if we can merge the attribute values to create a single attribute.For example, I created a WT part. I filled out the attribute number 8989, created and added the customer number attribute in WT, and selected it from the drop-down list. I also manually entered the project number for one more attribute. Everything I get into the Number attribute. Is it possible to do it through OIR? Regards,Aj
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.