Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Use this event to

Excerpt

Append values to the Bin GS1 Application Identifier.

...

See also: https://www.gs1.org/standards/barcodes/application-identifiers

Template

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

Example

        [EventSubscriber(ObjectType::CodeunitCodeunit::"MOB Toolbox", 'OnAfterGetBinGS1Ai''', true, true)]
    local procedure OnAfterGetBinGS1Ai MyOnAfterGetBinGS1Ai(var _BinGS1Ai: Text)
    var
        MobToolbox: Codeunit "MOB Toolbox";
    begin
        // add two GS1Ai to existing text: New value is  add two GS1Ai to existing text: New value is '00,92,93'
        MobToolBox.Add_GS1Ai(_BinGS1Ai, '92');
        MobToolBox.Add_GS1Ai(_BinGS1Ai, '93');
    end;


See also:

Filter by label (Content by label)
showLabelsfalse
showSpacefalse
excerptTypesimple
cqllabel = "bc" and label = "onaftergetanygs1ai"

...