part

Defines parts to be carried by resources and used by activities.

Syntax:

[ DynamicComponentDependency ] part PartName {
[ TimeSpanUOM ] [ TimeZoneOverride ] [ ChangeDetection ] [ CustomChangeHandler ] #SqlDml.QueryBlock ;
}

Mandatory columns

Column Name Data Type Description Default Value
id String(32) Defines a unique id for the part.

Optional columns

Column Name Data Type Description Default Value
is_global Number (0 = False, 1 = True) Indicates whether the part is global. False
cost_ph Double For reusable parts, the cost per hour to apply when the part is removed from a depot.
description String(2000) Provides a description of the part.
reusable Number (0 = False, 1 = True) Indicates whether the part is used up when required by activities.
volume Double Specifies the unit volume of the part to be used in capacity calculations.
weight Double Specifies the unit weight of the part to be used in capacity calculations.


            part Part {{SelectName}} {
               SELECT
                     ..                  id,
                  -- optional columns
                     ..                  is_global,
                     ..                  cost_ph,
                     ..                  description,
                     ..                  reusable,
                     ..                  volume,
                     ..                  weight
               FROM {{sourceTableName}}
               WHERE ...;
            }

Note:   All selected columns must have correct aliases that match a IFS Scheduling Part.

PartName

Syntax:

<Identifier>


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