Click or drag to resize

CreateTransportOrderRequest Class

** NOTE: ADDED in CFX 2.0 **

Message request to create transport order; it shall contain all necessary data for one or more transports while leaving sufficient flexibility to make use of different Fleet Manager capabilities.
{
  "TransportOrderId": "T123456",
  "RelatedWorkOrderId": "WO000123",
  "Materials": {
    "TransportedTools": [
      {
        "UniqueIdentifier": "ID000234",
        "Name": "Tool 1"
      },
      {
        "UniqueIdentifier": "ID000567",
        "Name": "Tool 2"
      }
    ],
    "TransportedMaterialPackages": [
      {
        "UniqueIdentifier": "ID0AB123C",
        "InternalPartNumber": "PN12345",
        "InternalPackageName": "Package components type 1",
        "Quantity": 100000.0,
        "LeadingMaterialPackage": null,
        "BatchId": "B123",
        "BatchMaterialPackage": null,
        "GreyZone": 0.0
      },
      {
        "UniqueIdentifier": "ID0ZW234X",
        "InternalPartNumber": "PN67890",
        "InternalPackageName": "Package components type 2",
        "Quantity": 120000.0,
        "LeadingMaterialPackage": null,
        "BatchId": "B567",
        "BatchMaterialPackage": null,
        "GreyZone": 0.0
      }
    ]
  },
  "Source": "Location 1",
  "FinalDestination": "Location 2",
  "StartedBy": "MaterialTower1",
  "Priority": 2,
  "TargetDeliveryTime": "2024-11-12T15:13:54.4355998+01:00"
}
Inheritance Hierarchy
SystemObject
  CFXCFXMessage
    CFX.Materials.TransportCreateTransportOrderRequest

Namespace: CFX.Materials.Transport
Assembly: CFX (in CFX.dll) Version: 2.0.0+5bb1f71a933ed371a0f5f2d5e7db34c89b75f3ea
Syntax
public class CreateTransportOrderRequest : CFXMessage

The CreateTransportOrderRequest type exposes the following members.

Constructors
Properties
 NameDescription
Public propertyFinalDestination The final destination for this transport order
Public propertyMaterials A list of the specific materials, WIP, and / or production units that are to be transported for this transport order
Public propertyPriority The priority low – medium – high for the new transport order
Public propertyRelatedWorkOrderId The related production work order ID (where applicable)
Public propertySource The point of origination for this this transport order
Public propertyStartedBy The application or operator who initiated the new transport order
Public propertyTargetDeliveryTime The target delivery time for completing the new transport order
Public propertyTransportOrderId The order ID of the new transport order
Top
See Also