Changing Routable Types

To route an object to users, the object type must be defined on the From side of the Object Route relationship. You can add additional types, or remove types if you do not want them to be routable.

By default, IP Classification types are defined as routable (Libraries, Classification, Document Library, General Library, Part Library, General Class, Document Family, Generic Document, Document Sheet, Retention Hold, Retention Record, and Part Family).

  1. To check details of Object Route relationship, use the Print command.

    Print relationship NAME;

    Where, NAME is the name of the relationship that you want to check the details of.

    For example:

    Print relationship “Object Route“;

  2. To add one or more types to side of relationship(Object Route) use below command, and add list of types you want:

    modify relationship NAME [MOD_ITEM {MOD_ITEM}];

    Where,
    • NAME is the name of the relationship you want to modify.
    • MOD_ITEM is the type of modification you can make. You need to specify the fields to be modified.

    For example:

    modify relationship "Object Route" to add type Part add type "Part Marking";

  3. To remove one or more types from side of relationship(Object Route), use the following command, and remove the list of types you want:

    modify relationship NAME [MOD_ITEM {MOD_ITEM}];

    Where,
    • NAME is the name of the relationship you want to modify.
    • MOD_ITEM is the type of modification you want to make. You only need to specify fields to be modified.

    For example:

    modify relationship "Object Route" to remove type Part remove type "Part Marking" ;