capacitypart

This defines an override for the maximum quantity of stock that can be carried for aparticular part. If the maximum quantity is null then there is no maximum. Ifexclusivity required is set to true then the resource must carry only this partfor this capacity requirement.

Syntax:

[ DynamicComponentDependency ] capacitypart CapacityPartName {
[ TimeSpanUOM ] [ TimeZoneOverride ] [ ChangeDetection ] [ CustomChangeHandler ] #SqlDml.QueryBlock ;
}

Mandatory columns

Column Name Data Type Description Default Value
capacity_id String(32) Defines the unique id for the capacity.
part_id String(32) Specifies the Unique identifier for the part to which this capacity applies.

Optional columns

Column Name Data Type Description Default Value
exclusivity_required Number (0 = False, 1 = True) Indicates whether the part must be carried for the capacity requirement. False
maximum_quantity Number Defines the maximum quantity of stock to be carried.


            capacitypart CapacityPart {{SelectName}} {
               SELECT
                     ..                  capacity_id,
                     ..                  part_id,
                  -- optional columns
                     ..                  exclusivity_required,
                     ..                  maximum_quantity
               FROM {{sourceTableName}}
               WHERE ...;
            }

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

CapacityPartName

Syntax:

<Identifier>


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