Includes: Windchill API, Windchill REST Services, Info*Engine, UI Customization
Recently active
"I need to retrieve the parts from the BOM structure that do not have a CAD association. Once identified, I want to associate an empty CAD assembly with each of these parts. The CAD association for each part should be named based on the respective part."
I'd like to export automatically pdf and dwg files wihle publishing it on windchill.. For the moment I managed the pdf files export using "Presentation Export" tool. But not the dwg ones.In addition the dwg file in zipped folder as shown is there any way to manage these tow problems ?THANK YOU
how should i get changeRecord2 from the wizard urlThe URL is this : wcdev.windchill.com/Windchill/ptc1/change/setResultantItemsAttributes?ContainerOid=OR%3Awt.pdmlink.PDMLinkProduct%3A2138737&u8=1&unique_page_number=58248588089754_0&AjaxEnabled=component&wizardActionClass=ext.sup.disposition.supResultantItemsFormProcessor&tableID=table__ext.mvctablebuilder.TableBuilder_TABLE&actionName=setResultantItemsAttributes&portlet=poppedup&context=comp%24ext%24OR%3Awt.change2.WTChangeOrder2%3A63753681%24&oid=OR%3Awt.change2.WTChangeOrder2%3A63753681&soid=comp%24ext%24OR%3Awt.change2.WTChangeOrder2%3A63753681%24OR%3Awt.change2.ChangeRecord2%3A63759524!*.
We want to assign the object name 'TEST_S325.5_46HP' to attribute values. We have 3 attributes: 'customer', 'emission', and 'engine'. We assign 'TEST' to 'customer', 'S325.5' to 'emission', and '46HP' to 'engine' without underscores in the object name.
Hi there, I am currently trying to perform watermarking in Windchill, using Adobe experience manager. I am currently able to watermark PDF's when creating a new representation using the Visualization Configuration Administration, by uploading a DDX Template that defined the watermark. I have a few issues. These templates are uploaded at the context level, and watermark every document within the context they are uploaded to. I would like to only watermark certain type of documents, and be able to select from a set of watermarks based on attribution/or workflow values in Windchill. This solution only allows me to upload a single DDX template and uses that watermark for all documents. In summary, we have 3 different watermarks, and want to dynamically choose which watermark will be applied. It would be done automatically, or through user input. Is there a way to dynamically assign watermarks to PDF's in my scenario? If there is a way to do this in con
Hello All,How to retrieve all related objects from EPMDocument and to workspace?Thanks.@HelesicPetr
When ever the child is modified and checked in, the parent which has representation already becomes Marked Out of Date.I want to understand the core logic behind it.Is there any listener which triggers or OOTB class registered in properties?
Is there any way to identify whether the object is checked in from Windchill or CADApplication?
I want to filter by the ID of AlternatePart in this API call: /windchill/servlet/odata/ProdMgmt/Parts('OR:wt.part.WTPart:28728284')?$expand=Alternates($expand=AlternatePart), but I have not been successful using commands like ?filter. Can you help me on how to filter based on the ID of AlternatePart in this context?
its more related to change task. When in the change task if we reassign the role of the specific task ( System engineer role) to other person, it will get recorded in the task history tableWell while making task reassignment in the change task we wanted that to record in the Discussions table(customize>collaboration>Discussions) as of now it is getting recorded in the History tab of the Change Task and look at Task History table, We wanted to transfer the Task History table under Discussions Forum tab.
What is the use publish.markoutofdate.traversal.precheck.filtermethod property and when it triggers actually?
As per the original post. Hello,I am struggling with the authentication to avoid the PopUp ( https://www.ptc.com/en/support/article/CS63015)can you share how you push the --javaargs to make it works? Are you on UNIX/Linux server because the article mention that is limited to UNIX/Linux but at the same time in the note they also mention Windows... Our OS is windows so maybe this is the reason its not working.
Dears,I wrote a customized User Picker according to the Demo, it is working fine under the Creat and Edit modes, but it can't show the selected property value, I think I should need to write some code under the getDataValue method for the ComponentMode.VIEW, how can I make writing this part of the code to be able to display it on the VIEW under getDataValue method. Thank you. @Override public Object getDataValue(String component_id, Object object, ModelContext mc) throws WTException { String attributeId = component_id; Object obj = null; GUIComponentArray guiArray = new GUIComponentArray(); if (ComponentMode.CREATE.equals(mode) || ComponentMode.EDIT.equals(mode)) { obj = super.getDataValue(attributeId, object, mc); if (obj instanceof PickerInputComponent) { PickerInputComponent pickerComponent = (PickerInputComponent) obj; guiArray.addGUIComponent(pickerComponent); } } else if (ComponentMode.VIEW.equals(mode)) { //TODO } return obj; } 
i wanted to render the part info page URL in the esi metarespone file tag , but their is a customization guide for erp Connector i applied the logic it is not working as expected.
How can we select the approver group based on the attribute value in the workflow?
I am creating a custom action for a report based on Time period selected in first step, using this to create report for specific time in second step. I have created multiple JSPs based on time selection to show user. But I can see all steps in wizard steps are not getting dynamically hidden.Custom Actions :<objecttype name="object" class="wt.fc.Persistable"> <action name="Dashboard"><command url="Dashboard.jsp" windowType="popup" class="DashboardProcessor" method="execute"/> </action> <action name="Dashboard_Step0" afterVK="CheckDashBoardReportTimePeriod" ><label>Select Time Period</label> <command url="Dashboard_Step0.jsp" windowType="popup" /> </action> <action name="Dashboard_Step1" preloadWizardPage="false"><label>Product Registration Transactions</label>
A user does not have access of modify identity to a part, how to override this access that user can edit part. Through the code.
I had created a new organization to test some random stuff, but now no longer need it. Is there an easy way to delete it? Thanks. Windchill Version 12.1.2.0
Hi! I hope you all good! At moment, we have a Java old solution to save data from a Part in a file (txt and xls) that is triggered on Life Cycle. Unfortunelly now we will need to send by API to a outside ERP service. I would want maintain this flow but not writing the result into a file, i need change to send by API rest service. Have anyone a sample Java Code about how to do that? In fact it´s a Totvs DataSul from Brazil integration, if someone has any idea to how to solve it, i'll appreciate. Thank you!
How to override ootb validator or is any way to add our own validator to ootb actions.
Hi,Is there a way to deselect a particular row from the tree selection?I have a few selected rows in a table. But depending on an attribute of the selected row, I need to deselect it.Example://All the selected rows are obtained in this these selections variablevar selections = tree.selModel.getSelections();//The attribute "Should_not_be_Selected" represents the row which should be deselected.for (var icount = 0; icount < selections.length; icount++) { if (selections[icount].data.Should_not_be_Selected === "yes") { //What should I do now with selections[icount] to deselect this row? }}I couldn't find any help with TableUtils or TreeHandler.Any idea? Thanks
Hello,I don't find a solution to remove in Windchill (ver. 11.1) the option "inseparable" in the fied Assembly Mode (internal name: partType). I'd like to have only "separable" and "component".Somebody has a solution to do this? Thx
I get the following error when trying to run a custom Rest Endpoint (concept : Fetch all contents for resulting items in an ECN). I cant figure out what I am doing wrong. Web Service Response { "error": { "code": null, "message": "The key value '' is invalid." } } MethodServer Log com.ptc.odata.windchill.servlet.WcRestServlet {userID} - An unexpected REST error occured Wrong parameter value. at org.apache.olingo.server.core.uri.parser.ParserHelper.parseFunctionParameters(ParserHelper.java:203) at org.apache.olingo.server.core.uri.parser.ResourcePathParser.functionCall(ResourcePathParser.java:388) at org.apache.olingo.server.core.uri.parser.ResourcePathParser.leadingResourcePathSegment(ResourcePathParser.java:229) at org.apache.olingo.server.core.uri.parser.ResourcePathParser.parsePathSegment(ResourcePathParser.java:88) at org.apache.olingo.server.core.uri.parser.Parser.parseUri(Parser.java:234) at org.apache.olingo.server.core.ODataHandlerImpl.proces
Hello PTC Community team/members, I have created one customized action for WTPart but whenever I share any WT Part to Project Link that same action also visible into Project Link. Can anyone know how I can hide/remove that customized action for the team/role. Attached picture for the reference(yellow highlighted action, I want to hide).
I have a custom CN report with a custom table that lists some object details. Kicking myself for not seeing this sooner. What did I miss in my table definition?
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.