ENTITY coordinated_universal_time_offset

(* SCHEMA step_merged_ap_schema; *)
-- IN AP203e2/AP214/AP232/AP238 STEP-NC/AP242
ENTITY coordinated_universal_time_offset;
      hour_offset : INTEGER;
      minute_offset : OPTIONAL INTEGER;
      sense : ahead_or_behind;
   DERIVE
      actual_minute_offset : INTEGER := NVL(minute_offset, 0);
   WHERE
      WR1:
         (0 <= hour_offset) AND (hour_offset < 24);
      WR2:
         (0 <= actual_minute_offset) AND (actual_minute_offset <= 59);
      WR3:
         NOT (((hour_offset <> 0) OR (actual_minute_offset <> 0)) AND (sense = exact));
END_ENTITY;

Explicit Attributes

Entity coordinated_universal_time_offset has the following local and inherited explicit attributes:
AttributeTypeDefined By
 hour_offsetINTEGERcoordinated_universal_time_offset
 minute_offsetINTEGERcoordinated_universal_time_offset
 senseahead_or_behind (ENUM)coordinated_universal_time_offset

Derived Attributes

Entity coordinated_universal_time_offset has the following local and inherited derived attributes:
AttributeTypeDefined By
 actual_minute_offsetINTEGERcoordinated_universal_time_offset

Inverse Attributes

    No Inverse Attributes

Supertypes

    No supertypes

Subtypes

    No subtypes

Referenced By

Entity coordinated_universal_time_offset and its supertypes are referenced by the following definitions:
DefinitionTypeReferenced Entity
 groupable_item SELECT coordinated_universal_time_offset
 local_time ENTITY coordinated_universal_time_offset
 same_as_item SELECT coordinated_universal_time_offset


[Top Level Definitions] [Exit]

Generated by STEP Tools® EXPRESS to HTML Converter
2023-12-22T16:32:02-05:00