Use this event to
Excerpt |
---|
Append values to the Item No. GS1 Application Identifier. |
...
See also: https://www.gs1.org/standards/barcodes/application-identifiers
Template
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB Toolbox", 'OnAfterGetItemNoGS1Ai', '', true, true)]
local procedure OnAfterGetItemNoGS1Ai(var _ItemNoGS1Ai: Text)
begin
end;
Example
[EventSubscriber(ObjectType::Codeunit, Codeunit::"MOB Toolbox", 'OnAfterGetItemNoGS1Ai', '', true, true)]
local procedure MyOnAfterGetItemNoGS1Ai(var _ItemNoGS1Ai: Text)
var
MobToolbox: Codeunit "MOB Toolbox";
begin
// add two GS1Ai to existing text: New value is '01,02,91,92,93'
MobToolBox.Add_GS1Ai(_ItemNoGS1Ai, '92');
MobToolBox.Add_GS1Ai(_ItemNoGS1Ai, '93');
end;
See also:
Filter by label (Content by label) | ||||||||
---|---|---|---|---|---|---|---|---|
|
...