Bar Code in d365 fo x++

 public str getItemInfo(ItemId ItemNo)

    {

        ProdTable   vProdtable;

        str iteminfo;

        #define.EmptyString('')

        iteminfo = #EmptyString;



        select * from vProdtable

           where vProdtable.ItemId   ==  ItemNo;


        iteminfo    = ItemNo;

        iteminfo = BarcodeCode39::construct().encodeString(iteminfo);

        return iteminfo;

    }

Comments

Popular posts from this blog

Get Current Worker data in d365 fo x++

Table Level Event Handler in d365 fo x++