Overview Index

SDAI_DICTIONARY_SCHEMA (jsdai.dictionary)


FUNCTION get_operands
          (operandz : SET [0:?] OF entity_or_view_or_subtype_expression) : SET [0:?] OF entity_or_subtype_expression;

LOCAL
                     operands : SET OF entity_or_subtype_expression := [];
          END_LOCAL; 

          REPEAT i := 1 TO SIZEOF(operandz);

            IF NOT ('EXTENDED_DICTIONARY_SCHEMA.VIEW_DEFINITION' IN TYPEOF (operandz[i]))
    THEN
               operands := operands + operandz[i];
    END_IF;
  END_REPEAT;
  
  RETURN (operands);

END_FUNCTION; -- get_operands

public class FGet_operands
          public static Value run(SdaiContext _context, Value operandz)