Application module: Product view definition reference ISO/TS 10303-1823:2018-11(E)
© ISO

Cover page
Table of contents
Copyright
Foreword
Introduction
1 Scope
2 Normative references
3 Terms, definitions and abbreviated terms
    3.1 Terms and definitions
    3.2 Abbreviated terms

4 Information requirements
   4.1 Required AM ARMs
   4.2 ARM type definition
   4.3 ARM entity definitions
5 Module interpreted model
   5.1 Mapping specification
   5.2 MIM EXPRESS short listing
     5.2.1 MIM type definition

A MIM short names
B Information object registration
C ARM EXPRESS-G   EXPRESS-G
D MIM EXPRESS-G   EXPRESS-G
E Computer interpretable listings
F Change history
Bibliography
Index

4 Information requirements

This clause specifies the information requirements for the Product view definition reference application module. The information requirements are specified as the Application Reference Model (ARM) of this application module.

NOTE 1  A graphical representation of the information requirements is given in Annex C.

NOTE 2  The mapping specification is specified in 5.1. It shows how the information requirements are met by using common resources and constructs defined or imported in the MIM schema of this application module.

This clause defines the information requirements to which implementations shall conform using the EXPRESS language as defined in ISO 10303-11. The following begins the Product_view_definition_reference_arm schema and identifies the necessary external references.

EXPRESS specification:

*)
SCHEMA Product_view_definition_reference_arm;
(*

4.1 Required AM ARMs

The following EXPRESS interface statements specify the elements imported from the ARMs of other application modules.

EXPRESS specification:

*)
USE FROM Support_resource_arm;    --  ISO/TS 10303-1800

USE FROM External_item_identification_assignment_arm;    --  ISO/TS 10303-1128

USE FROM Product_view_definition_arm;    --  ISO/TS 10303-1019
(*

NOTE 1   The schemas referenced above are specified in the following part of ISO 10303:

Support_resource_arm ISO/TS 10303-1800
External_item_identification_assignment_arm ISO/TS 10303-1128
Product_view_definition_arm ISO/TS 10303-1019

NOTE 2   See Annex C, Figures C.1and C.2 for a graphical representation of this schema.

4.2 ARM type definition

This subclause specifies the ARM type for this application module. The ARM type and definition is specified below.

4.2.1 pie_external_identification_item   EXPRESS-G

The pie_external_identification_item type is an extension of the external_identification_item type. It adds the data type Generic_product_view_definition_reference to the list of alternate data types.

NOTE  The list of entity data types may be extended in application modules that use the constructs of this module.

EXPRESS specification:

*)
TYPE pie_external_identification_item = EXTENSIBLE GENERIC_ENTITY SELECT BASED_ON external_identification_item WITH
   (Generic_product_view_definition_reference);
END_TYPE;
(*

4.3 ARM entity definitions

This subclause specifies the ARM entities for this module. Each ARM application entity is an atomic element that embodies a unique application concept and contains attributes specifying the data elements of the entity. The ARM entities and definitions are specified below.

4.3.1 Generic_product_view_definition_reference   EXPRESS-GMapping table

A Generic_product_view_definition_reference is a is a reference to an externally defined Product_view_definition which may or may not have a local representation. A Generic_product_view_definition_reference is either a Product_view_definition_reference or a Product_view_definition_reference_with_local_representation.

EXPRESS specification:

*)
ENTITY Generic_product_view_definition_reference
  ABSTRACT SUPERTYPE OF (ONEOF (Product_view_definition_reference,
                                Product_view_definition_reference_with_local_representation));
  source : External_source_identification;
END_ENTITY;
(*

Attribute definitions:

source: defines the location which contains the original definition of the Product_view_definition.

4.3.2 Product_view_definition_reference   EXPRESS-GMapping table

A Product_view_definition_reference is a type of Generic_product_view_definition_reference that identifies the externally defined Product_view_definition by providing the key attributes necessary to unambiguously identify it and the associated Product_version, Product and Organization that owns the product id.

EXPRESS specification:

*)
ENTITY Product_view_definition_reference
  SUBTYPE OF (Generic_product_view_definition_reference);
  product_id : identifier;
  product_definition_formation_id : identifier;
  product_definition_id : identifier;
  id_owning_organization_name : OPTIONAL label;
END_ENTITY;
(*

Attribute definitions:

product_id: specifies the identifier of the externally defined Product, where the referenced Product_view_definition is assigned to one of its Product_version.

product_definition_formation_id: specifies the identifier of the externally defined Product_view_definition.

product_definition_id: specifies the identifier of the externally defined Product_view_definition.

id_owning_organization_name: specifies the id owner of the externally defined Product, realised by an applied Organization_or_person_in_organization_assignment with the role 'id owner'.

4.3.3 Product_view_definition_reference_with_local_representation   EXPRESS-GMapping table

A Product_view_definition_reference_with_local_representation is a type of Generic_product_view_definition_reference that represents an externally defined Product_view_definition by a local Product_view_definition that provides only minimal information.

EXPRESS specification:

*)
ENTITY Product_view_definition_reference_with_local_representation
  SUBTYPE OF (Generic_product_view_definition_reference, Product_view_definition);
END_ENTITY;
(*



*)
END_SCHEMA;  -- Product_view_definition_reference_arm
(*


© ISO 2018 — All rights reserved