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
Post a Comment