Overview Schemas Index

AUTOMOTIVE_DESIGN (jsdai.SAutomotive_design)


FUNCTION default_tolerance_table_cell_wr3
          (agg : AGGREGATE OF representation_item) : BOOLEAN;

BEGIN
   IF (SIZEOF(QUERY ( i <* agg | 
         (('AUTOMOTIVE_DESIGN.MEASURE_REPRESENTATION_ITEM' 
         IN  TYPEOF(i)) AND  
          (i\representation_item.name = 
         'significant number of digits')) 
         )) = 1) OR 
     ((SIZEOF(QUERY ( i <* agg | 
         (('AUTOMOTIVE_DESIGN.MEASURE_REPRESENTATION_ITEM' 
         IN  TYPEOF(i)) AND  
          (i\representation_item.name = 'lower limit')) 
        )) = 1) AND  
      (SIZEOF( QUERY ( i <* agg | 
         (('AUTOMOTIVE_DESIGN.MEASURE_REPRESENTATION_ITEM' 
         IN TYPEOF(i)) AND 
          (i\representation_item.name = 'upper limit'))
        )) = 1))
   THEN
     RETURN(TRUE);
   ELSE
     RETURN(FALSE);
   END_IF;
 END;

END_FUNCTION; -- default_tolerance_table_cell_wr3

public class FDefault_tolerance_table_cell_wr3
          public static Value run(SdaiContext _context, Value agg)