Includes: Windchill API, Windchill REST Services, Info*Engine, UI Customization
Recently active
How checkout icon is displayed on the object/Behavior of checkout icon on the icon?
Hello, I have a general question about the Windchill documentation.So there are a lot of listeners available to use in JSPs for customization like "wizardLoadComplete" or "afterLoadAttribueTable" etc. but is there a documentation of all listeners? I need a specific listener but how am I supposed to find it without a list of all available listener?I was not able to find anything about those events, maybe someone can help me or has the same problem. Best regards
how to create custom Status Glyph based on attribute value?
Hello,my edit wizard has 5 steps. You start at the first step, the Apply and Finish buttons are disabled be default.You have to go through the first 2 steps so the Apply and Finish buttons enable. However, I need them to be enabled all the time by default so you can open the wizard and apply the changes right away. I came up with this: Ext.getCmp("PJL_wizard_ok").enable(); This works for enabling the button, however, I need a place to call it. I was thinking about using a listener but I have tried "wizardLoadComplete" which does not work. Is there another way to achieve this? Best regards
We are trying to fetch multiple objects using the Query-Links. We use 2 Query-Links embedded inside "Parallel" webject. Each Query-Links webject will get approx 124-125 objects each.Please refer the below snippet for the same. <ie:parallel><ie:webject name="Query-Links" type="OBJ">...<ie:param name="group_out" data="objects1"/></ie:webject><ie:webject name="Query-Links" type="OBJ">....<ie:param name="group_out" data="objects2"/></ie:webject></ie:parallel><ie:webject name="Concat-Groups" type="GRP"><ie:param name="GROUP_IN" data="objects1"/><ie:param name="GROUP_IN" data="objects2"/><ie:param name="GROUP_OUT" data="objects"/></ie:webject>We then combine the results using a group webject.This task file will be called multiple times. In about 7-8th call, we face below Exception. We tried "Merge-Groups" and "Concat-Groups" webjects and we still face the "No group" exception. It works fine for less than 7 cal
I wonder if there is a way and exchange address in the two windchill tab and leave one that my pattern and if the possibility to disable the second.
Hi All,I have to create a customize participant list where I can see the roles what user gave on earlier Wizard.I have one role called Releaser Role on WTPart and on top that I have one action release part . When I am clicking on that action I have to create a Participant list which contain the role what we gave While creating part.Can we achive this from tree adaptor or any other way please suggest.@HelesicPetr , @Ajit_Kulkarni
While migrating the older version of the creo drawings from Windchill to Teamcenter, we are getting some unknown sync issue, this issue is exactly happens when we did some changes on latest version of the dependencies. For example let's say in creo DRW001.drw has the dependencies of PRT001.prt Let's say these are the latest version available in Windchill. DRW001.drw - 1.3 PRT001.prt - 1.3 Now we need to migrate the 1.1 version of the DRW001.drw. Also we did renaming on the PRT001.prt as PRT001_NEW.prt on the latest version (1.3) So after Windchill extraction by "As stored" for the 1.1 version of the drawing, we facing sync issue that PRT001.prt is not in the directory. Basically what's happening here is, when we rename the part in Windchill, it's getting renamed automatically for all the versions of the part, But in the physical file (File history of the part), it's still having the old name id. This can be fixed by check out the par
When will I open some drawings to make changes when I go to UPdate Values the same opens as default the notepad I can change to another type of application ? I've already set another application in Windows as the default yet to continue opening as Wordpad.
As per this thread: Will this work for operated On type allocated parts ? PTC is suggesting MPMProcessPlanHelper.service.getPartsFromOperation and getOperatedPartsFromOperation and doesnt seem to work. Please suggest.
Hi All,Trying to achieve Check in of WTPart should fail from workspace is a attribute is missing.Made the attribute required in Type & attribute however still it gets checked-in from workspace.Any reference what needs to be done.Thanks in advance
Hi All,I have a document of called Test so when my part is attached to this particular document I want the attribute value of document should pass to WTPart..Following are the attributesname :How I can achive this from alias attribute.@HelesicPetr , @manoj_dokku2 , @BjoernRueegg
Hi all,I'm trying to achieve to display the addition of weights of the child part onto the parent Part in the structure.Attached is the image of the same.Referred to CS228951 however that's not working may be I'm making some error.Any suggestions or references?Thanks in advanceRegards.
Need to query the WTDocument from the particular Organization, from WTDocument.class not from WTDocumentMaster.class. If I use WTDoumentMaster.class this is working but I need for WTDocument.class I've tried the code But having some issues, kindly let us know if any suggestions. exampe:Class Doc = WTDocument.class;Class ORG= WTOrganization.class;QuerySpec qs = new QuerySpec();int DOC_idx = qs.addClassList(Doc , true);int ORG_idx1 = qs.addClassList(ORG, true);SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");java.util.Date d1 = format.parse(screatedDateFrom);java.util.Date d2 = format.parse(screatedDateTo);Date dF = new Date(d1.getTime());Date dT = new Date(d2.getTime());Timestamp tsFrom = new Timestamp(d1.getTime());tsFrom.setHours(23);Timestamp tsTo = new Timestamp(d2.getTime());tsTo.setHours(23); SearchCondition sc0 = new SearchCondition(ORG, "name", SearchCondition.EQUAL, "ORGNAME1");SearchCondition sc00 = new SearchCondition(Doc, "organizationRe
Hi All,I have requirement like we can set the state of WTPart using either set state or Promotion request.But when the WTPart is connected with Particular document for ex. test.When WTPart will be connect with Test document then only the state of the part we can set as released.I can see have to change at two places one at set state action and one in promotion request.please provide your view on this how we can implement in easy way.Thanks .@HelesicPetr @VladimirN
Hi All,Which form Processor is getting call on set state action of WTPart?Can anyone please help with this
We want to maintain the same session across multiple requests to InfoEngine via Data Acess Object API. What we are trying to do is, call start-Session present in a task file, get the generated Session ID and instance and pass the same in another request to another task file. We are using InfoEngine's Java DataAccessObject API. We are however, getting "Session doesn't exist" error.
We are trying to build a query that: A) Use an XML DITA map (EPMdocument) as our primary fileB) From the XML DITA map file, extract all the links to other EPMdocumentsC) The EPMdocument links are found in the "topicref" elements (href attribute)D) Get the ID, name and author for each link. Sample XML DITA map:<bookmap>.....<chapter> <topicmeta><navtitle>Introduction &amp; General Description</navtitle></topicmeta> <topicref href="windcillEPMdocLink1.dita"/> <topicref href="windcillEPMdocLink2.dita"/></chapter>...</bookmap> Result XML:<REQS> <REQ id=".." link="windcillEPMdocLink1.dita"><name>...</name><author>...</author> </REQ> <REQ id=".." link="windcillEPMdocLink2.dita"><name>...</name><author>...</author></REQ></REQS>
I've been pretty good a custom display actions, tables and renderers. I need to create my first wizard which is simply in concept but there are some things I am unclear about. Story: Add a custom action to the Change Notice that displays a related object to the change notice and allows the user to edit information about that object. There can be more than one related object but a drop down list will allow the user to toggle between the different objects to edit a specific one. I think I have the form processor down which processes the form once a user hits complete. The wizard template (one step) looks fairly straight forward with describeAttributesTable block for input. Things I am fuzzy on: where do I place the code to navigate from the change notice to this related object and return one to the describeAttributesTable? Do I need a getModel block related with that table? Seeing as there could be more than one object but I am allowing edit to only one at a time, how do
I have a very slow vm and requires a lot of time to restart the method server os there any alternative to restarting the method server?
Im working on a scenario, where for a given attribute(eg,status), im using the iba name 'status' with the value anything less than the value 3, i wanted to fetch all the wtdocs with the attribute value<3. Can anyone guide me thorugh please? @xyzabc kindly route me through to the correct plaxe
Related to this post. I'm also looking for this. Did you find anything? Thanks in advance.
I'm trying to achieve cascading on an EPM document.According to Article - CS311528 its not a PDMLink Functionality.Any has an idea about work around.
Hi All,I'm trying to achieve for auto-populate in cascading when attribute has only one value.Any references.Thanks in advance.
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.