355. INVALID SET MEMBER FOR INSERTION INTO SET: SET-NAME

An attempt has been made to insert an invalid set member into set SET-NAME using the @INSERT function.  Set members may only be inserted into derived sets, and the member being inserted must be a member of the derived set's parent primitive set(s).  The following example illustrates:

MODEL:

 

SETS:

S1 /M1, M2, M3/;

S2( S1);

ENDSETS

 

CALC:

 !The following is valid because M2 is a member

  of S2's parent primitive set, S1;

 @INSERT( S2, M2);

 

 !The following is not valid because M4 is not a

  member of S1;

 @INSERT( S2, M4);

 

 !The following is not valid because S1 is not a

  derived set;

 @INSERT( S1, M4);

ENDCALC

 

END