OnAfterGetQuantityGS1Ai

Use this event to

Append values to the Quantity GS1 Application Identifier.


Description

Append values to the Quantity GS1 Application Identifier (QuantityGS1Ai) constant used to determine which GS1 Ai codes are quantities.
A corresponding change will be needed to the workflow declaration in Application.cfg

See also Register with Encoded Barcode (GS1).

Template

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB Toolbox", 'OnAfterGetQuantityGS1Ai''', true, true)]
    local procedure OnAfterGetQuantityGS1Ai(var _QuantityGS1Ai: Text)
    begin
    end;

Example

    [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB Toolbox", 'OnAfterGetQuantityGS1Ai''', true, true)]
    local procedure MyOnAfterGetQuantityGS1Ai(var _QuantityGS1Ai: Text)
    var
        MobToolbox: Codeunit "MOB Toolbox";
    begin
        // add two GS1Ai to existing text: New value is '310,30,37,92,93'
        MobToolBox.Add_GS1Ai(_QuantityGS1Ai, '92');
        MobToolBox.Add_GS1Ai(_QuantityGS1Ai, '93');
    end;


See also:

 

Version History

VersionChanges
MOB5.11Introduced