TypeDefinition

Parameter datatype.

Syntax:

( <FixedTextText> [ (Length )] | <FixedTextBoolean> [ (TrueValue ,FalseValue )] | <FixedTextInteger> | <FixedTextNumber> [ (Precision [ ,Scale ] )] | <FixedTextDate> | <FixedTextTime> | <FixedTextTimestamp> | <FixedTextEnumeration> (EnumerationRef ))

Primitive datatypes, typically set on attributes, specifies the type for a single value. For example:


         Name Text(50);
         RunwayLength Integer;
         Temperaure Number(4,2);
         NextMaintanance Date;

Enumerations are specified by their underlying type, as defined in as enumeration model. For example:


         TransportedAs Enumeration(DeliveryType);

Parameters can also be connected to a lookup view. For example:


         Company Text(50) lookupview Company;

EnumerationRef

Type enumeration name

Syntax:

<Identifier>

Length

Max length of the string

Syntax:

<Integer>

Precision

Number of digits

Syntax:

<Integer>

Scale

Number of decimals

Syntax:

<Integer>

TrueValue

Value representing TRUE

Syntax:

<String>

FalseValue

Value representing FALSE

Syntax:

<String>


This page is generated from IFS Developer Studio at 2021-08-13 08:49.