Community Tip - Learn all about PTC Community Badges. Engage with PTC and see how many you can earn! X
We have a script that automatically adds the index tag to our parts catalog. I want to take it one step futher and would like to add a profile to the index element. In the acl script it has an entry
insert_tag(indexterm)
What do I need to add to this to add a profile entry under the otherprops heading?
Thansk
Bryon
Solved! Go to Solution.
Use
oid_modify_attr(oid_caret(),"otherprogs","YourValue");
after the insert_tag(indexterm); line.
Tim
Use
oid_modify_attr(oid_caret(),"otherprogs","YourValue");
after the insert_tag(indexterm); line.
Tim
Thanks Tim, will give it a try.
Bryon