Skip to main content
18-Opal
August 6, 2014
Solved

acl script help: add profile to a tag

  • August 6, 2014
  • 1 reply
  • 1075 views

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

Best answer by TimPhelps

Use

oid_modify_attr(oid_caret(),"otherprogs","YourValue");

after the insert_tag(indexterm); line.

Tim

1 reply

TimPhelps12-AmethystAnswer
12-Amethyst
August 7, 2014

Use

oid_modify_attr(oid_caret(),"otherprogs","YourValue");

after the insert_tag(indexterm); line.

Tim

bfriesen18-OpalAuthor
18-Opal
August 7, 2014

Thanks Tim, will give it a try.

Bryon