How to implement Barcode Solution in Item Arrival in AX 2009

How to implement Barcode Solution in Item Arrival in AX 2009

This question has suggested answer(s)

Hi Guys,

Im planning to implement Barcode Solution in our AX 2009.

Is there somebody who can give me some details on how to do the barcode using in Item Arrival?

Please advise.

Thanks!

Ana

All Replies
  • Ana, your best bet for doing PO Arrival (or any other transaction) using mobile data collection and/or barcodes is going to be something designed specifically for that purpose.  Be sure to find one that is Certified for Microsoft Dynamics (CfMD) and works on the type of device you are planning to use.

    This one is CfMD for AX 2009 and AX2012, and works on Windows Mobile, iOS, Android, Windows Phone, and has a browser-based console for use on a desktop or other smart device.

    http://www.ScanWorkX.com

  • implementing barcode is not a big task in dynamics ax.

    1. need to setup bacode fonts

    Basic > Setup > Bar code setup

    2. you have to print item codes using barcode fonts.

    use EDT BarCodeString in display method of ItemCode( Barcode )

       BarcodeSetup                    barcodeSetup;    

       Barcode                         ItemBarCode;

       ;

       barcodeSetup.validateBarcode(_ItemId);

       ItemBarCode.string(true, _ItemId);

       ItemBarCode.encode();

       return ItemBarCode.barcodeStr();

    3. after printing barcode... you can scan it in to any string control

     (you have to create new line after scanning the barcode, by calling ds.create() method inside the ds.write()

    )

    Hope you will undarstand what i explained. If any more clarification plz reply.

  • Dear Prabath Ranasinghe ;

    Would you please Tell me how to implement it this way i am new to Development < would you please tell me how to do it in Details ?

    Thanks

    2. you have to print item codes using barcode fonts.

    use EDT BarCodeString in display method of ItemCode( Barcode )

      BarcodeSetup                    barcodeSetup;    

      Barcode                         ItemBarCode;

      ;

      barcodeSetup.validateBarcode(_ItemId);

      ItemBarCode.string(true, _ItemId);

      ItemBarCode.encode();

      return ItemBarCode.barcodeStr();

    3. after printing barcode... you can scan it in to any string control

    (you have to create new line after scanning the barcode, by calling ds.create() method inside the ds.write()

    )