Use this event to
...
See also: Read Master Data from 3rd party Shipping App
Template
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOS Pack APIMOB Pack API", 'OnDiscoverShippingProvider', '', truetrue, truetrue)]
local procedure OnDiscoverShippingProvider OnDiscoverShippingProvider()
begin
end;
Example
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOS Pack APIMOB Pack API", 'OnDiscoverShippingProvider', '', truetrue, truetrue)]
local procedure OnDiscoverShippingProvider MyOnDiscoverShippingProvider()
var
MosPackAPI MobPackAPI: Codeunit "MOS Pack APIMOB Pack API";
begin
MosPackAPI MobPackAPI.SetupShippingProvider(GetShippingProviderId(), 'My custom ShippingProvider Connector App');
end;
local procedure GetShippingProviderId GetShippingProviderId(): Code[20]
begin
exit('MYSHIPPINGPROVIDERID');
end;
Version History
Version | Changes |
---|---|
MOB5.42 | Introduced |
...