XStore

Hey guys. In this article, I will show you how to write the code to create your own QR code and Bar code in Dynamics 365 Finance and Operation using x++ code.
I believe many of you are struggling with this problem and may not be getting the right one at right time. So, this gift is for you.

What you need to do?

  1. Create two simple classes, one is for QR code creation helper and other is for Bar code generation helper and paste the below code in it.
  2. Now, you can use these classes where you need to add the Bar code or QR code by simply calling it.

Bar code

				
					/// <summary
/// Barcode creation helper
/// </summary>
public class AA_CreateBarcodeHelper
{
    /// <summary>
    /// Barcode creation
    /// </summary>
    /// <param name = "barcodeText">Pass the text that you want to scan while scanning Bar Code</param>
    /// <returns>Barcode</returns>
    public static BarCodeString showBarcode(str barcodeText)
    {
        Barcode barcode;


        barcode = Barcode::construct(BarcodeType::Code39);
        barcode.string(true, barcodeText);
        barcode.encode();


        return barcode.barcodeStr();
    }
}

>
				
			

QR code

				
					/// <summary
/// QR code creation helper
/// </summary>
public class AA_CreateQrCodeHelper
{
    /// <summary>
    /// Generate QR code 
    /// </summary>
    /// <param name = "qrCodeText">Pass the text that you want to scan while scanning QR Code</param>
    /// <returns>Bitmap</returns>
    public static Bitmap generateQRCodeFromBase64(str qrCodeText)
    {
        Bitmap qrCode;


        EFDocQRCode_BR generateQR = new EFDocQRCode_BR();
        generateQR.parmErrorCorrectionLevel(QRCodeErrorCorrectionLevel::Medium);


        try
        {
            qrCode = generateQR.generateQRCode(qrCodeText);
        }
        catch (Exception::CLRError)
        {
            warning("@ApplicationSuite_Localization:QRCodeIsDamaged");
        }


        return qrCode;
    }


}>
				
			

Author Details
Sachin Shukla
Author Details

Sachin Shukla is an experienced senior Dynamics 365 Finance & Operations Technical Consultant with a demonstrated history of working in the information technology and services industry.

×
Sachin Shukla

Sachin Shukla is an experienced senior Dynamics 365 Finance & Operations Technical Consultant with a demonstrated history of working in the information technology and services industry.

Latest Posts
  • A screenshot of Microsoft Dynamics 365 Intelligent Order Management, a single solution that performs rules-based order orchestration leveraging real-time Inventory and AI.

Comments are closed

Related Articles