Windchill
Recently active
I have created and designated a few feature parameters for a Cable, the Windchill WTPart is set to accept these parameters, the Cables have been designated via Model Intent > Designate, and WTParts get created for the cables upon check-in, but the WTPart parameters don't get populated with the designated feature parameter values. Has anyone had any luck with this?
On Windchill 10.2 I have a large number of promotion requests across our business all within varying product folders, is there a way to run a report or search which can show all promotion requests and which part of the work flow they are in? Our set up is such that we send a file for approval which then has two approvers after approver A has approved it moves on to approver B, I would like to be able to monitor where the approval is in its life cycle across all of the products we have at the ssame time to get an overview of the business as a whole and monitor how approvals are progressing. Does anyone know know how to do this or set up a search that would enable this?
Has anyone renamed a group in Windchill? I would like to rename one group but would like to know if someone else has and if they ran into any problems.
The OOTB RuleAlgorithms available in Windchill for object initialization do not include a string concatenator that allows whitespace. The OOTB com.ptc.windchill.enterprise.revisionControlled.server.impl.NumberGenerator algorithm will concatenate together strings and attribute values, but it trims whitespace. Using a few lines of code, I was able to create my own. It makes use of the StringJoiner class available in java 1.8+. package ext.company; import wt.rule.algorithm.RuleAlgorithm; import wt.util.WTException; import wt.inf.container.WTContainerRef; import java.text.*; import java.util.*; public class customStringjoinerRuleSpace implements RuleAlgorithm { public Object calculate(Object args[], WTContainerRef container) throws WTException { StringJoiner name = new StringJoiner(" "); if (args!=null && args.length>0) { for (int i=0; i<args.length; i++) { if (args[i] != null) { name.add(args[i].toString()); } } } return name.t
I have a 10.1 production server that needs the rbinfo files implemented onto my 11 dev server, how would I go about doing this and is their any documentation on this? Thanks,
We have a workflow for submitting a file to a library. As part of that workflow, once an EPMDocument is approved, we want to move it to a specific folder. There's sample code listed on the support page that (after correcting typos) doesn't work. Instead, it comes up with a "Context not found: "Windchill PDM"" error. I tried changing the folder path in place of the default "System" but that doesn't change anything. Where should I look to next? What am I missing? // Check if a PBO has been assigned to the process if (primaryBusinessObject !=null) { try { wt.folder.Folder f = wt.folder.FolderHelper.service.getFolder( "/System"); //move the PBO to the '/System' folder wt.folder.FolderHelper.service.changeFolder((wt.folder.FolderEntry )primaryBusinessObject, f ); } catch ( wt.util.WTException wex ) { System.out.println( "Cannot move "+ primaryBusinessObject.getDisplayIdentifier( )+"because "+ wex.getLocalizedMessage( )} } } else // if a PBO has not been assigned t
Some of our CN's have both CAD files AND documents in the Resulting Objects table. Up until now it was easier to just create separate reports and be done with it. One report for the CAD files and one report for the documents. Recently, I have been trying to get a report that displays both CAD files and documents in one report but have been unsuccessful so far. I have been playing around with several different variations using the AND and OR booleans but I just can't get it. Does anyone know how this can be done.
Recently I created a subtype of WTParts. I have now went into the View Administration of Site and created new views hierarchy: Manufacturing SupplyChain1 SupplyChain2 SupplyChain3 I now need to assign these views to my created subtype and then call the objects with the new views in a Product Structure. I'm unsure of what this really means, let alone how to complete this task. What would be the best way of doing this?
Has anyone had success Importing from PDMLink 10 to 11, and if so what attributes, policies, rules, did you need to change in order for it to work?
Is it possible to make the value in the Trace Code Column of a structure non-editable?
Environment: Windchill 11.0 M020 Windows 2012 master Windows 2008 replica server I have a recurring problem replicating very large files to one specific replica server. When I 'Reset Undelivered Replication Items' to that site, and kick off a replication job, the job usually processes a few small files successfully, before it starts transmitting a single large file (usually over 2.5 GB). This large file will begin to replicate and make good progress for the first couple hours, but eventually all replication activity to that site stops. Sometimes the file being transferred will be moved to the current vault folder, and then into the .unreferenced folder within. I know this based on monitoring the file activity on the replica server and watching the wrmfTransport folder on the replica.Here is evidence of the same file being pushed to the replica, and winding up '.unreferenced' When this happens, the Replication job continues to say 'Executing' and the wt.router.7.x queue
This a customization question is for an existing Test Request document which is stored in a Test Library. I want to add an attribute called "Project" to the Test Request document. To populate the attribute, I want to be able to search and select from all existing Projects in Project Link to populate the attribute. Is this possible, and if so, how?
Is there a way to test your code by connecting Windchill in Eclipse?For example, in Windchill-linked Eclipse, can you test the work of retrieving or revising a version of an object and applying it as a workflow expression? So let's connect Windchill to Eclipse. (Plugin or library?)Write the code in Eclipse and make sure it works in the console log.Apply the identified code to Windchill's workflow expressions.is that right? Is there any reason to integrate Eclipse with Windchill? thank
Hi all,My requirement is to create a PDF for all the Drawings that are checked-in.I've already tried Post Publish Delegate but this method creates an additional WTDocument for the PDF. However, I want the PDF to be attached as secondary content of the drawing itself instead of a new WTDocument.Is it possible to do so, please help me with a solution.Message was edited by: Akshay Saini
Does anyone have good tips and tricks for debugging a Package Delivery ZIP failure? There's not enough information in the background method server's log file to pinpoint a specific object or problem to investigate. I have a package and related delivery I cannot ZIP in Windchill 10.1 M050. The background method server log file shows: "Nested exception is: wt.util.WTException: Delivery ZIP file could not be created. Contact your administrator if the problem persists." I can create Packages and Deliveries w/o error, but I am encountering this ZIP failure frequently for one product context. I can successfully ZIP other deliveries in other contexts, so I'm sure the problem is related to this particular set of objects. This particular package pulls content from multiple containers and includes CAD, Drawings, Documents, ECAD and Parts. I tried excluding items by object type, source container, special characters in the name, long names, etc. but nothing cured the pro
Hello All When system connected to particular IP address only then Method server will start, Otherwise Server manager will hang . how to resolve this issue ? Even with out connecting the internet i am not able to start the windchill , Any suggestions to solve the issue ? Best Regards
Hi All,I am Rehosting(Rename) in Windchill 10.2 M030 using Rehosting Utility 3.0,I have tried in Test server its succesfully rehosted, however i am doing the same in Production Server,Methods server couuld not able to start.Below is the errors, On a rehosted Windchill 10.2 system the MethodServer fails to start with the following error message: wt.method.server.startup.services - Failure to start manager wt.audit.StandardAuditService wt.services.ManagerException: Could not initialize Auditing service. Nested exception is: wt.util.WTException: (wt.federation.PrincipalManager.PrincipalManagerResource/CONFIG_ERROR_INCORRECT_NAMING_PROVIDER) com.infoengine.util.IEException: Info*Engine configuration error - The default Directory Service Provider URL and/or Service Search Base could not be retrieved from Info*Engine properties. Contact your system administrator. Nested exception is: (wt.federation.PrincipalManager.PrincipalManagerResource/CONFIG_ERROR_INCORRECT_NAMING_PROVIDER)
If Navigate server is exposed over internet and Windchill is in intranet is there any problem for accessing windchill data in navigate.
I am trying to build a report with the query builder to get the release date and resolve date of an ECN. On this moment I have this but I get double records. I am looking for a method that give me the latest activity of an ECN.Report informationJoins.SelectCriteria
Is there a gate that can be set to check if a model has been regenerated upon check-in?
Waited for CPS17 which gives support to Windows10 platform for PTC WGM, But its the same issue as I saw in CPS14. Is CPS17 really supports WGM on Windows10?Hi Pankaj Mooteri, Any idea on this issue?
I have upgraded to CreoView 3.0m032 and now Creo will not launch to publish any files. I have cleared all of the cache files. I get a "did not find available worker" error message. Any suggestions as to what I missed?
Every time I do a search on a specific class in partslink, the grid of the field displayed change back to the original disposition and not save my customisation. Anyone know haw to save the grid disposition and avoid to change it every time? Beniamino
In the Description/Disposition attribute of change notice, can we restrict use of special characters. Please guide me the steps. Attributre to be constrained to regular expression.
I have been encountering an issue that I cannot find any explanation for... I will send a drawing to my Workspace and check it out to make changes. After making the changes, I will regen (just in case), save the drawing, create a PDF and check the drawing it back in. Once another person opens it, some, or all of, the changes have disappeared. I have checked out and back in using all of the various ways that you can do so. I have even removed them from my workspace after check-in and added back to the workspace to ensure the changes are there. Even after verifying the changes stayed, it still reverts back sometimes. It is causing me many re-works and wasting a lot of time on the same issue over and over. HELP PLEASE!
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.