/
Carrier Notifications
Carrier Notifications
Supply Chain Cloud functionality includes the ability to modify carrier notifications.
Important
If you previously had a modification to enable notifications, and you download connector version 2021.10.24.0 or newer, you must modify your code to continue using the Notification Deliver logic.
Notification Types
The SCC connector supports carrier notifications.
You can modify this feature to add notification types:
- Deliver: Send an email notification when the shipment is delivered.
- Exception: Send an email when an unforeseen event changes the shipment's expected delivery date (e.g. address unknown, damage to shipment, signature not received).
- Ship: Send an email notification when the shipment is processed and you have a tracking number.
Code Configuration
You can modify D365 to inject a notification node in the Ship request. The SCC engine will recognize all three types listed above.
- Extend writeShipShipment from the appropriate TMSProcessXML class.
- Add the notifications node using the example below as a guide.
Here is an example of the Ship request generated from the above modification:
<Notifications> <Notification> <Type>NotificationDeliver</Type> <EmailAddress1>abc@bhsolutions.com</EmailAddress1> </Notification> <Notification> <Type>NotificationException</Type> <EmailAddress1>abc@bhsolutions.com</EmailAddress1> </Notification> <Notification> <Type>NotificationShip</Type> <EmailAddress1>abc@bhsolutions.com</EmailAddress1> </Notification> </Notifications>
, multiple selections available,
Related content
Delivery Terms Setup
Delivery Terms Setup
Read with this
SCC Version 53 - 2023.12.4.0
SCC Version 53 - 2023.12.4.0
More like this
Shipping Carrier Setup
Shipping Carrier Setup
Read with this
SCC Version 43 - 2022.12.19.0
SCC Version 43 - 2022.12.19.0
More like this
DHL Express Credentials
DHL Express Credentials
Read with this
SCC Version 33 - 2021.10.25.0
SCC Version 33 - 2021.10.25.0
More like this