Use this event to
Excerpt |
---|
Add new custom Mobile Document Type. |
Template
...
Example
TODO [EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB WMS Setup Doc. Types", 'OnAfterCreateDefaultDocumentTypes', '', true, true)]
local procedure MyOnAfterCreateDefaultDocumentTypes()
begin
end;
Example
// [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;
See also:
Filter by label (Content by label) | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
Version History
Version | Changes |
---|---|
MOB5.18 | Introduced |