Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Hosted by 3rd Party: Marcel Digital

www.marceldigital.com

Jeff Belasco Olivia / Project Manager / opugliese@marceldigital.com (
Jeff Belasco jbelasco@marceldigital.com was told no longer on the project as of 4.5.23

Casey Jordan/ Website Developer /  cjordan@marceldigital.com

...

Alternate API: https://seko-track-api.azurewebsites.net/track/21720895

Source Code Repository: https://bitbucket.org/sekologistics/myseko-track-api/src/develop/src/MySekoTrackApi/

CI/CD Pipelines (Azure DevOps): https://dev.azure.com/seko-na/Track API

...

Step 4: "At Delivery Terminal", "At Delivery Terminal Delivery Appt Set", "Temporary Destination Hold", "Delivered To Warehouse", "Shipment is Out for Delivery", "On Hand DEST Delv Appt Set",

“Out for Delivery”

Step 5: "Shipment Delivered", "Picked Up From Customer", "Return Data Received", "Delivered"

to get comprehensive list of Shipment Status/Milestones from REDNA & Cargowise

Harmony Store

SELECT * FROM sekona.sekona.dbo.tblStatusMapping
SELECT * FROM odyssey.ODYSSEY_UserRepository.dbo.Client_StatusMapping
SELECT * FROM odyssey.ODYSSEY_UserRepository.dbo.Client_StatusCategory

When in doubt, look to mySEKO tracking results: https://harmony.myseko.com/Track

International Shipment:

...

Domestic Shipment:

...

View file
nameTracking Statuses.xlsx

API query

exec sp_executesql N'-- TrackingInfoDetailed
SELECT TOP 1
@trackingNumber as [TrackingNumber],
ShipmentDate as [ShipmentDate],
ServiceLevel as [ServiceLevel],
ShipmentStatus as [ShipmentStatus],
DueDate as [DueDate],

Code Block
                NULLIF(ShipReference, '''')   as [ShipperReference],
                ShipCity        as [ShipperCity],
                ShipState       as [ShipperStateCode],
                ShipPostal      as [ShipperPostalCode],
                ShipCountryCode as [ShipperCountryCode],

                NULLIF(ConsReference, '''')   as [ConsigneeReference],
                ConsCity        as [ConsigneeCity],
                ConsState       as [ConsigneeStateCode],
                ConsPostal      as [ConsigneePostalCode],
                ConsCountryCode as [ConsigneeCountryCode],

                PODDate         as [PodDate],
                NULLIF(PODReceivedBy, '''')   as [PodReceivedBy],
                Pieces          as [PieceCount],
                [Weight]        as [TotalWeight],
                UnitOfWeight    as [UnitOfWeight]
            FROM vwOrderDetail_GetOdysseyShipmentHeader
            WHERE ShipmentID = @ordOrderID

            -- MilestonEvent
            exec [dbo].[spOrderDetail_IntlShipmentRemarks] @HawbID=@ordOrderID',N'@ordOrderID uniqueidentifier,@trackingNumber nvarchar(13)',@ordOrderID='39CB3F55-97B8-429A-B075-058EBD61475A',@trackingNumber=N'WWT1590094600'