Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
I have soft attribute created in a sub-type of part. I want to populate its drop-down from rbinfo file. I dont want to use global enum or legal list. Any Suggestions ?
Solved! Go to Solution.
Hi @pjain-6,
Not sure about rbInfo approach, but I did similar kind of customization way back (and still using it) of reading values from .properties file and getting them in drop down for IBA on WTDocument create layout.
If you wanna explore this approach, you can try instructions mentioned in KB article.
https://www.ptc.com/en/support/article?n=CS138327
Refer Below screen capture from my implementation:
I read somewhere, we can also extend this approach so that, if values are added or removed, modified list gets displayed in the drop-down, that too without restarting Windchill Method Server.
I am trying to explore this approach, but no luck for now.. I will surely post my findings here if I found anything.
Regards,
Shirish
Hi @pjain-6,
Not sure about rbInfo approach, but I did similar kind of customization way back (and still using it) of reading values from .properties file and getting them in drop down for IBA on WTDocument create layout.
If you wanna explore this approach, you can try instructions mentioned in KB article.
https://www.ptc.com/en/support/article?n=CS138327
Refer Below screen capture from my implementation:
I read somewhere, we can also extend this approach so that, if values are added or removed, modified list gets displayed in the drop-down, that too without restarting Windchill Method Server.
I am trying to explore this approach, but no luck for now.. I will surely post my findings here if I found anything.
Regards,
Shirish
If you are using Windchill 10+, then you should be using the global enumerations unless otherwise customization is a must for your requirement.
To answer your question, yes it is possible to list the values from a rbInfo file using a DataUtility.
Hi @ShirishMorkhade,
i used global enum instead as the rb file we were trying to use did not had enough values.
Thank you for your help. 🙂