Shipment Detail Report
Appearance
Summary
This is a detailed summary report of all shipments in the system and shows you all the details at a high level. Please see the columns below for their descriptions.
Filters
| Filter | Description |
|---|---|
| Database | If you have access to multiple entity databases, you can filter and select specific ones |
| Site | Allows you to filter and focus on specific sites within your entity access. |
| Carrier | Enables filtering by carriers associated with the sites you have access to. |
| Users | Filters quotes/bookings by specific users. Users will be listed if they have access to the sites you can access. |
| Origin | Filters jobs based on their origin location. |
| Destination | Filters jobs based on their destination location. |
| Date Filter | Displays only jobs created within the specified date range |
Calculations

| Reference | Calculation | Description |
|---|---|---|
| 1 . Won / Lost = If the quote was won or lost | Formula:
Won/Lost =
SWITCH (
TRUE(),
'quotations'[status] IN {8, 61, 62}, "Lost", 'quotations'[status] IN {0, 1, 2, 20, 6, 60}, "Pending",
'quotations'[status] IN {3, 4, 5, 7, 30, 31, 32, 33, 34, 35, 70, 71}, "Won",
"Unknown")
|
This formula determines the status of a quotation based on its assigned numerical code. The possible statuses are:
|
| 2 . Deleted = If the shipment is deleted | The formula:
Deleted = IF (ISBLANK (quotations[deleted_at]), "X", UNICHAR (10003) ) |
This formula checks whether a quotation has been deleted and assigns a corresponding
symbol:
|
| 3 . Status = Current status of the shipment in QMS | The formula:
State =
SWITCH (
TRUE(),
VALUE('quotations'[status]) = 0, "Search - routes",
VALUE('quotations'[status]) = 1, "Search - confirm",
VALUE('quotations'[status]) = 2, "Quote",
VALUE('quotations'[status]) = 20, "Quote - requote request",
VALUE('quotations'[status]) = 6, "Quote - spot rate",
VALUE('quotations'[status]) = 60, "Quote - spot rate review required",
VALUE('quotations'[status]) = 5, "Booking - cancellation request",
VALUE('quotations'[status]) = 31, "Booking - cancelled with charges",
VALUE('quotations'[status]) = 30, "Booking - acceptance review required",
VALUE('quotations'[status]) = 33, "Booking - confirmed review required",
VALUE('quotations'[status]) = 34, "Booking - sync review required",
VALUE('quotations'[status]) = 35, "Booking - schedule confirmed review required",
VALUE('quotations'[status]) = 4, "Booking - pending credit",
VALUE('quotations'[status]) = 3, "Booking - carrier confirmation required",
VALUE('quotations'[status]) = 32, "Booking - pending",
VALUE('quotations'[status]) = 70, "Booking - rebooking request",
VALUE('quotations'[status]) = 7, "Booking - confirmed",
VALUE('quotations'[status]) = 71, "Booking - airline confirmed",
VALUE('quotations'[status]) = 8, "Lost",
VALUE('quotations'[status]) = 61, "Lost - carrier declined",
VALUE('quotations'[status]) = 62, "Lost - customer declined",
"UnKnown"
)
|
This formula categorizes the status of a quotation based on its numerical value and assigns a corresponding description. The possible states are:
Search & Quotation States:
Booking States:
Lost States:
Default State:Unknown: If the quotation status does not match any of the predefined values, it is categorized as "Unknown". |
| 4. Loss Reasons | loss reason = quotation [ loss_reason] |
The lost reason that was set |
| 5. Deleted Reasons | Delete reason=quatation[delete_reason] |
The deleted reason that was |
| 6. Cargo Type = The cargo type selected, currently displayed in the numeric form | The formula:
Cargo type = IF(ISBLANK('quotations'[Cargo_type]), "ANY", 'quotations'[Cargo_type])
|
This formula determines the type of cargo for a quotation. It follows these rules:
|
| 7. Gross Weight = Gross weight of the shipment. | The gross weight is determined by summing up the total weight of all items in a quotation. This represents the overall weight, including the packaging and any additional material. | |
| 8. Chargeable Weight = Chargeable weight of the shipment | . | |
| 9. Commodity Type = The type of commodity of the shipment | ||
| 10. Product Type = What type of product was selected | The formula:
Product Type = SWITCH ( quotations [Product], 0, "Airport to Airport", 1, "Airport to Door", 2, "Door to Airport", 3, "Door to Door", "Unknown" ) |
|
| 11.Promo = If a promotional shipment | The formula:
Promo = IF ( quotations[tariffs.flag_promo] = TRUE, "✓", "x" ) |
This formula determines whether a quotation qualifies as "Standard" based on specific conditions:
|
| 12. Contract = If a contract shipment | The formula:
Contract = IF ( NOT ISBLANK (quotations[tariffs.customer_id]), "✓", "x" ) |
This formula is used to track contracts in a quotation system.
|
| 13. Spot Rate = If a spot rate shipment | The formula:
Spot Rate = IF ( quotations[spotrate] = 1, "✓", "x" ) |
This formula helps users quickly identify whether a quotation is categorized as a spot rate.
|
| 14. DG = If there are dangerous goods in the shipment | The formula:
DG = IF ( quotations[hazardous_goods] = TRUE, "✓", "x" ) |
This formula helps users quickly identify whether a shipment or quotation involves dangerous (hazardous) goods. The checkmark (✓) and cross (x) provide a clear and intuitive visual representation. |
| 15. CAO = If the shipment is cargo aircraft only | The formula
CAO = IF ( quotations[cargo_only] = TRUE, "✓", "x" ) |
This formula helps users quickly identify whether a shipment is classified as Cargo Aircraft Only (CAO), ensuring compliance with aviation safety regulations. The checkmark (✓) and cross (x) provide a clear and intuitive visual representation. |