Community Tip - You can change your system assigned username to something more personal in your community settings. X
Hi there,
I'm tring to develop a program with using Pro/Toolkit and it needs item IDs (not feature ID) for parts and detum planes.
How can I see them with Creo Parametric?
Solved! Go to Solution.
See this article: https://www.ptc.com/en/support/article/CS96624
See this article: https://www.ptc.com/en/support/article/CS96624
Thank you for your suggestion. Now I can see the item IDs and set model handles with TOOLKIT.
tbraxton shows the way to show feat IDs in a model tree. Do you know if it's possible to show the item IDs in the model tree like that? It would be better way to check the IDs and make easier to code.
AFAIK, item IDs can't be shown in the columns, unfortunately. Maybe you could do a Toolkit script to show them? Loop through all model features and add their names and item IDs to an array, then save that as a text file, or something? I've never used Toolkit, but it seems a relatively simple task.
EDIT: You could even add the Item ID as a feature parameter, then add that parameter as a column, if you want to get real fancy. But it wouldn't update automatically if the ID changes.
In the model tree, in later versions of creo, session ID was added as an option to display.,
I think Session ID is still a different thing from Item ID. Item ID is only used for Toolkit programming, as far as I understand. So yeah, we have:
It's a bit of a mess. 😀
If you need to do this more than once for a single feature then I would suggest adding the feature id column to the model tree, you can see the id for all features without any UI clicks/picks. Using the tree should be much more efficient when debugging code.
OP is asking about Item ID, though, not Feature ID, which is a different thing.
The item ID is not unique the FID is. I am not sure how item ID would be used in coding since it is not unique, it seems odd to use this in Toolkit. I do not believe that the search tool supports searching by item ID so hovering on an object in the graphics window or pick from list appear to be the options.