DemandFlow Support Centre

SDEL: Sales Deliverable

ReferenceEntity Reference16/04/2026Updated 16/04/2026
A line item on a sales order representing a specific product, service, or deliverable with pricing and delivery details.

SDEL: Sales Deliverable

The SDEL entity: A line item on a sales order representing a specific product, service, or deliverable with pricing and delivery details.

Default definition. This article describes the default SDEL definition shipped with DemandFlow. Administrators can add, remove, rename, or re-type fields, change which ones are required, and alter the layout from the Definitions screen in Settings. Your tenant's current schema may differ from what is shown here. To read the current definition at any time, GET the DEFINITION object whose id matches SDEL.

Entity properties

PropertyValue
Entity codeSDEL
Display nameSales Deliverable
PluralSales Deliverables
Level1000

Use cases

SDEL is a child entity of SCON (Sales Order), linked via the SUB|ENT|SCON|SDEL comboKey. Each SDEL record represents one deliverable line item on an order. It captures product identification (part/SKU number, serial number), pricing (unit price, quantity, discount percentage, and a computed totalPrice via formula), delivery logistics (shipping method, tracking, carrier, delivery address, installation requirements), and technical details (specifications, version/model, license keys, activation/expiration dates, warranty).

The deliverableType field links to SDELTYPE for classification, enabling reporting by deliverable category. The status workflow (pending through delivered/installed/cancelled) tracks individual line item progress independently of the parent order status. This separation from SCON allows partial delivery scenarios where some items ship before others.

Fields

Deliverable Details

FieldTypeRequiredNotes
nametextYesDeliverable Name
deliverableTypereference → SDELTYPEYesDeliverable Type
descriptiontext (multi-line)Description
partNumbertextPart/SKU Number
serialNumbertextSerial Number
quantitynumberYesQuantity
unitPricenumberYesUnit Price
discountnumberDiscount %
totalPricenumberRead-only. Total Price

Delivery Information

FieldTypeRequiredNotes
statusenumYesStatus Valid ids: pending (Pending), confirmed (Confirmed), inprogress (In Progress), ready (Ready), shipped (Shipped), delivered (Delivered), installed (Installed), cancelled (Cancelled), onhold (On Hold).
expectedDeliveryDatedateExpected Delivery Date
actualDeliveryDatedateActual Delivery Date
shippingMethodenumShipping Method Valid ids: standard (Standard Shipping), express (Express Shipping), overnight (Overnight), freight (Freight), pickup (Customer Pickup), digital (Digital Delivery), na (Not Applicable).
trackingNumbertextTracking Number
shippingCarriertextShipping Carrier
deliveryAddresstext (multi-line)Delivery Address
installationRequiredbooleanInstallation Required
installationDatedateInstallation Date
installationNotestext (multi-line)Installation Notes

Specifications

FieldTypeRequiredNotes
technicalSpecstext (multi-line)Technical Specifications
versiontextVersion/Model
licenseKeytextLicense Key
activationDatedateActivation Date
expirationDatedateExpiration Date
warrantyPeriodnumberWarranty Period (Months)

Dependencies & Requirements

FieldTypeRequiredNotes
prerequisitestext (multi-line)Prerequisites
dependenciestagsDependencies
compatibilityNotestext (multi-line)Compatibility Notes

Attachments

  • documents: file attachment field.

Additional panels

  • Activity timeline panel attached.

Relationships

  • Lookups: deliverableType points at a SDELTYPE record.

Creating a Sales Deliverable via the API

POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json

{
  "entity":   "SDEL",
  "level":    1000,
  "comboKey": "SUB:|ENT:",
  "name":    "Example name",
  "deliverableType":    "",
  "quantity":    1,
  "unitPrice":    1
}

Listing Sales Deliverables records

GET /v1/entities/SDEL/SUB

See also

sdelsales deliverablesales deliverablesentitydefinitionreference

Was this article helpful?

← Back to Knowledge Base