capacity

This defines the parts capacity that can be carried by a resource. It consists of an overall maximum volume and weight that can be carried, a default maximum part quantity, and individual capacities for particular parts.

Syntax:

[ DynamicComponentDependency ] capacity CapacityName {
[ TimeSpanUOM ] [ TimeZoneOverride ] [ ChangeDetection ] [ CustomChangeHandler ] #SqlDml.QueryBlock ;
}

Mandatory columns

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

Optional columns

Column Name Data Type Description Default Value
description String(2000) Provides a description for this capacity.
maximum_part_quantity Number Specifies the default maximum quantity of a part that can be carried in this capacity.
maximum_volume Double Specifies the overall maximum part volume that can be carried in this capacity.
maximum_weight Double Specifies the overall maximum part weight that can be carried in this capacity. This is calculated separately to volume.


            capacity Capacity {{SelectName}} {
               SELECT
                     ..                  id,
                  -- optional columns
                     ..                  description,
                     ..                  maximum_part_quantity,
                     ..                  maximum_volume,
                     ..                  maximum_weight
               FROM {{sourceTableName}}
               WHERE ...;
            }

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

CapacityName

Syntax:

<Identifier>


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