Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. 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