cancel
Showing results for 
Search instead for 
Did you mean: 

Notification of delivery number created

Former Member
0 Kudos

Hello

I process orders on ZSD_ZS01 daily and need to know if there is a way of getting a notification via email of the delivery number for each order.

Or even better would be if my customer could receive an email when there items are dispatched (delivery number created)

The smoother this process the better, idealy i would like to process the order and have no further interaction and the customer receives delivery number etc automatically to track order etc

Thanks for any help offered

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

BUS2032 instead of LIKP for Sales Orders.

LIKP for Delivery

Yes, configure each on every system and the function module will be run every time a Delivery is created. If you want to do it when is changed, same BObject but instead of EVENT = CREATED, EVENT = CHANGED.

Regards.

Former Member
0 Kudos

Thank you, does this just need setting up once and will run on every sales order?

Former Member
0 Kudos

TCode - SWETYPV.

BObject - LIKP

Event - Create

Create Function Module that send e-mail with the event. So every time a delivery is created event is launched and function create and e-mail with the delivery number.

EXPORTING

event = event "CREATED

rectype = rectype

objtype = objtype "LIKP

objkey = objkey "Delivery Number

tables

event_container = event_container

Regards