top of page

Extend Beyondbarcodes with a few lines of code

This is our public repository where the source code is located:



BeyondBarcodes is very easy to extend. Do you need to generate barcodes in some Item pages like "Item Identifiers" or "Item Reference Entries"?


This how you do it:



pageextension 60001 "PTE Item Reference Entries" extends "Item Reference Entries"
{
    layout
    {
        addfirst(factboxes)
        {
            part("PTE Barcode"; "BYD Barcode")
            {
                ApplicationArea = All;
            }
        }
    }

    trigger OnAfterGetCurrRecord()
    begin
        CurrPage."PTE Barcode".Page.SetSourceTable(Rec);
    end;
}


And this is how you should do the setup:


Select your Table and your field:

That's it:



8 views0 comments
bottom of page