Info | ||
---|---|---|
| ||
This event is specific to the "PostShipment"-RegistrationType. Do not confuse with other RegistrationTypes that is posting shipmens as well and got their own events i.e. OnPostAdhocRegistrationOnToteShipping_OnBeforeRunWhsePostShipment |
Use this event to
Excerpt |
---|
Code to be executed prior to posting via standard posting routine for RegistratonType "PostShipment". |
Description
The event can be used to call functions on the standard posting codeunit before run to i.e. print document on posting.
Template
// [Template]
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Adhoc Registr.", 'OnPostAdhocRegistrationOnPostShipment_OnBeforeRunWhsePostShipment', '', true, true)]
local procedure OnPostAdhocRegistrationOnPostShipment_OnBeforeRunWhsePostShipment(var _WhseShptLine: Record "Warehouse Shipment Line"; var _WhsePostShipment: Codeunit "Whse.-Post Shipment")
begin
end;
Example
// [Example]
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Adhoc Registr.", 'OnPostAdhocRegistrationOnPostShipment_OnBeforeRunWhsePostShipment', '', true, true)]
local procedure MyOnPostAdhocRegistrationOnPostShipment_OnBeforeRunWhsePostShipment(var _WhseShptLine: Record "Warehouse Shipment Line"; var _WhsePostShipment: Codeunit "Whse.-Post Shipment")
begin
_WhsePostShipment.SetPrint(true);
end;
Filter by label (Content by label) | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Version History
Version | Changes |
---|---|
MOB5.17 | Introduced |