Community Tip - Learn all about PTC Community Badges. Engage with PTC and see how many you can earn! X
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
Solved! Go to Solution.
Hi @Alberto
You can not change it in the UI.
You need to change resource bundle info definition in enumcustomization
https://www.ptc.com/en/support/article/CS366297
You just need to find right file where the values are written
codebase/wt/part/
PartTypeRB.RB.rbInfo / PartTypeRB.RB.ser
rbInfo is text file where the definition is defined. ser file is final compiled file that is used by system.
I would advice to hide the value. Never ever delete it because it is OOTB.
PetrH
to edit this entries in resources you need Enum customize , the best way to achieve this is to add a new legal value constraint with only 2 entries separable|component
Thx for your replay but it means to have the new legal value only for the new document, right? The old data will have only the current parameter.
I tried on my WCH develepoment server and it works.
But is ti right that there're "legal value list"? I cannot disable the first but when I create a new part I've only the option "separable" and "component".
Hi @Alberto
You can not change it in the UI.
You need to change resource bundle info definition in enumcustomization
https://www.ptc.com/en/support/article/CS366297
You just need to find right file where the values are written
codebase/wt/part/
PartTypeRB.RB.rbInfo / PartTypeRB.RB.ser
rbInfo is text file where the definition is defined. ser file is final compiled file that is used by system.
I would advice to hide the value. Never ever delete it because it is OOTB.
PetrH
Thx for this infomation!!!
I done as you told me.
I deselect the parameter "Inseparable" (no delete) and I save teh file wt.part.PartTypeRB.RB.ser
But I've a doubt regarding what I need to do after to save the file --> point 7 documentation CS366297.
but I've a doubt:
Hi @Alberto
Just open Windchill shell command line and run
ant -f codebase/MakeJar.xml
I do not use the custUpdate....
then continue to next point
PetrH
Thanks again, SOLVED 🙂