Reference family table feature value in relationships
Reference family table feature value in relationships
(OP)
I have a family table where some features are enabled (Y) or not (N) and I want to know if I can reference these values from within relationships?
e.g.
if myfeature=="Y"
...
else
...
endif
e.g.
if myfeature=="Y"
...
else
...
endif





RE: Reference family table feature value in relationships
You cannot access thru relations the visibility of a feature. Only in ProToolkit you can do this. But you can add a parameter (boolean) to each instance and put in in the table with values 0 and 1. Then you can do what you want:
if myBoolean == 1
then
....
else
....
endif
-Hora