Use this event to
...
Always used in conjunction with with an [...]_OnAfterSetFrom[...] event.
See: How-to: Group matching order lines (GroupBy)
...
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Setup Doc. Types", 'OnAfterCreateDefaultDocumentTypes', '', true, true)]
local procedure MyOnAfterCreateDefaultDocumentTypes()
begin
end;
Example
// Add Custom Mobile DocumentType
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Setup Doc. Types", 'OnAfterCreateDefaultDocumentTypes', '', true, true)]
local procedure Ex01MyOnAfterCreateDefaultDocumentTypes()
var
MobWmsSetupDocTypes: Codeunit "MOB WMS Setup Doc. Types";
begin
MobWmsSetupDocTypes.CreateDocumentType('MyCustomDocType', '', Codeunit::"MOB WMS Whse. Inquiry");
end;How-to: Group matching order lines (GroupBy)
See also:
Filter by label (Content by label) | ||||||||
---|---|---|---|---|---|---|---|---|
|
...