-
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“;
-
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";
-
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" ;
|